Skip to content

Commit

Permalink
forgot to rm add kwargs for egnn score network
Browse files Browse the repository at this point in the history
  • Loading branch information
sblackburn-mila committed Oct 4, 2024
1 parent 729e168 commit d9e776e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions crystal_diffusion/models/score_networks/egnn_score_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ class EGNNScoreNetworkParameters(ScoreNetworkParameters):
coords_agg: str = "mean"
message_agg: str = "mean"
n_layers: int = 4
repulsion_max: float = 0.0,
repulsion_rcut: float = 0.5
edges: str = 'fully_connected'
radial_cutoff: float = 4.0
drop_duplicate_edges: bool = True
Expand Down Expand Up @@ -80,8 +78,6 @@ def __init__(self, hyper_params: EGNNScoreNetworkParameters):
coords_agg=hyper_params.coords_agg,
message_agg=hyper_params.message_agg,
n_layers=hyper_params.n_layers,
repulsion_max=hyper_params.repulsion_max,
repulsion_rcut=hyper_params.repulsion_rcut
)

@staticmethod
Expand Down

0 comments on commit d9e776e

Please sign in to comment.