Skip to content

Commit

Permalink
keep default to be True and set to false with orb v1
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiyil1230 committed Oct 4, 2024
1 parent 13910c6 commit 12b44e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
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 = False,
remove_mean: bool = True,
):
"""Initializes the NodeHead MLP.
Expand Down
5 changes: 5 additions & 0 deletions orb_models/forcefield/pretrained.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ def orb_v1(
num_mlp_layers=1,
mlp_hidden_dim=256,
target="forces",
remove_mean=False,
),
stress_head=GraphHead(
latent_dim=256,
Expand Down Expand Up @@ -196,6 +197,7 @@ def orb_d3_v1(
num_mlp_layers=1,
mlp_hidden_dim=256,
target="forces",
remove_mean=False,
),
stress_head=GraphHead(
latent_dim=256,
Expand Down Expand Up @@ -235,6 +237,7 @@ def orb_d3_sm_v1(
num_mlp_layers=1,
mlp_hidden_dim=256,
target="forces",
remove_mean=False,
),
stress_head=GraphHead(
latent_dim=256,
Expand Down Expand Up @@ -273,6 +276,7 @@ def orb_d3_xs_v1(
num_mlp_layers=1,
mlp_hidden_dim=256,
target="forces",
remove_mean=False,
),
stress_head=GraphHead(
latent_dim=256,
Expand Down Expand Up @@ -312,6 +316,7 @@ def orb_v1_mptraj_only(
num_mlp_layers=1,
mlp_hidden_dim=256,
target="forces",
remove_mean=False,
),
stress_head=GraphHead(
latent_dim=256,
Expand Down

0 comments on commit 12b44e4

Please sign in to comment.