Skip to content

Commit

Permalink
use v2 default
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiyil1230 committed Oct 4, 2024
1 parent 12b44e4 commit 5ed0e78
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions orb_models/forcefield/gns.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@ def __init__(
num_edge_out: int,
num_mlp_layers: int,
mlp_hidden_dim: int,
attention_gate: Literal["sigmoid", "softmax"] = "sigmoid",
distance_cutoff: bool = True,
attention_gate: Literal["sigmoid", "softmax"] = "softmax",
distance_cutoff: bool = False,
polynomial_order: Optional[int] = 4,
cutoff_rmax: Optional[float] = 6.0,
):
Expand Down
2 changes: 1 addition & 1 deletion orb_models/forcefield/graph_regressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def __init__(
mlp_hidden_dim: int,
target: Union[str, PropertyDefinition],
dropout: Optional[float] = None,
remove_mean: bool = True,
remove_mean: bool = False,
):
"""Initializes the NodeHead MLP.
Expand Down

0 comments on commit 5ed0e78

Please sign in to comment.