You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,10 +90,10 @@ pip install ./mace
90
90
91
91
### Training
92
92
93
-
To train a MACE model, you can use the `run_train.py` script:
93
+
To train a MACE model, you can use the `mace_run_train` script, which should be in the usual place that pip places binaries (or you can explicitly run `python3 <path_to_cloned_dir>/mace/cli/run_train.py`)
94
94
95
95
```sh
96
-
python ./mace/scripts/run_train.py \
96
+
mace_run_train \
97
97
--name="MACE_model" \
98
98
--train_file="train.xyz" \
99
99
--valid_fraction=0.05 \
@@ -132,18 +132,18 @@ To use Apple Silicon GPU acceleration make sure to install the latest PyTorch ve
132
132
133
133
### Evaluation
134
134
135
-
To evaluate your MACE model on an XYZ file, run the `eval_configs.py`:
135
+
To evaluate your MACE model on an XYZ file, run the `mace_eval_configs`:
136
136
137
137
```sh
138
-
python3 ./mace/scripts/eval_configs.py \
138
+
mace_eval_configs \
139
139
--configs="your_configs.xyz" \
140
140
--model="your_model.model" \
141
141
--output="./your_output.xyz"
142
142
```
143
143
144
144
## Tutorial
145
145
146
-
You can run our [Colab tutorial](https://colab.research.google.com/drive/1D6EtMUjQPey_GkuxUAbPgld6_9ibIa-V?authuser=1#scrollTo=Z10787RE1N8T) to quickly get started with MACE.
146
+
You can run our [Colab tutorial](https://colab.research.google.com/drive/1D6EtMUjQPey_GkuxUAbPgld6_9ibIa-V?authuser=1#scrollTo=Z10787RE1N8T) to quickly get started with MACE. We also have a more detailed user and developer tutorial at https://github.com/ilyes319/mace-tutorials
Constructs a MACECalculator with a pretrained model based on the ANI (H, C, N, O).
37
+
The model is released under the MIT license.
38
+
Note:
39
+
If you are using this function, please cite the relevant paper associated with the MACE model, ANI dataset, and also the following:
40
+
- "Evaluation of the MACE Force Field Architecture by Dávid Péter Kovács, Ilyes Batatia, Eszter Sára Arany, and Gábor Csányi, The Journal of Chemical Physics, 2023, URL: https://doi.org/10.1063/5.0155322
0 commit comments