Skip to content

Commit cb94594

Browse files
committed
jax-md update and minor changes
1 parent 53bd64e commit cb94594

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Basic fine-tuning command:
143143
so3lr finetune --datafile dataset.xyz --workdir so3lr_finetuned --num-train 1000 --num-valid 100
144144
```
145145

146-
You can customize the training process with a config file (`--config custom_finetune.yaml`), choose different fine-tuning strategies (`--strategy full`), or fine-tune from a previously trained model (`--model-path ./previous_finetune_workdir`). Possible strategies include full, final_mlp, last_layer, last_layer_and_final_mlp, first_layer, and first_layer_and_last_layer. The default configuration in `so3lr/config/finetune.yaml` includes settings for the optimizer, learning rate schedule, batch size, loss weights, and data filtering.
146+
You can customize the training process with a config file (`--config custom_finetune.yaml`), choose different fine-tuning strategies (`--strategy full`), or fine-tune from a previously trained model (`--model-path ./previous_finetune_workdir`). Possible strategies include `full`, `final_mlp`, `last_layer`, `last_layer_and_final_mlp`, `first_layer`, and `first_layer_and_last_layer`. The default configuration in `so3lr/config/finetune.yaml` includes settings for the optimizer, learning rate schedule, batch size, loss weights, and data filtering.
147147

148148
## Dimer Binding Energy Calculations
149149

@@ -183,7 +183,7 @@ atoms.info['charge'] = 0.0
183183
calc = So3lrCalculator(
184184
calculate_stress=False,
185185
lr_cutoff=1000, # for gas-phase systems
186-
dtype=np.float32
186+
dtype=np.float64
187187
)
188188
atoms.calc = calc
189189

so3lr/cli/so3lr_md.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def handle_box(
220220
f"Unsupported boundary condition: '{shift_displacement}'. "
221221
"Only 'free' or 'periodic' boundary conditions are supported."
222222
)
223-
logger.info(f"Box for So3LR: {box}")
223+
logger.info(f"Box for SO3LR: {box}")
224224
return positions, box, displacement, shift, fractional_coordinates
225225

226226

0 commit comments

Comments
 (0)