Skip to content

Commit

Permalink
change default for add_shift to False
Browse files Browse the repository at this point in the history
  • Loading branch information
thorben-frank committed Aug 23, 2024
1 parent 630f6b5 commit e8d59ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlff/mdx/potential/mlff_potential.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class MLFFPotential(MachineLearningPotential):
dtype: Type = struct.field(pytree_node=False) # TODO: remove and determine based on dtype of atomsx

@classmethod
def create_from_ckpt_dir(cls, ckpt_dir: str, add_shift: bool = True, dtype=jnp.float32):
def create_from_ckpt_dir(cls, ckpt_dir: str, add_shift: bool = False, dtype=jnp.float32):
"""
Expand Down

0 comments on commit e8d59ae

Please sign in to comment.