Skip to content

Commit 96c5040

Browse files
committed
trivial updates
1 parent 9a41a84 commit 96c5040

2 files changed

Lines changed: 23 additions & 25 deletions

File tree

paper/paper.bib

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -190,17 +190,16 @@ @article{Larsen-17-06
190190
urldate = {2022-11-08}
191191
}
192192

193-
@misc{Kovacs-25-01,
194-
title = {{{MACE-OFF}}: {{Transferable Short Range Machine Learning Force Fields}} for {{Organic Molecules}}},
195-
author = {Kov{\'a}cs, D{\'a}vid P{\'e}ter and Moore, J. Harry and Browning, Nicholas J. and Batatia, Ilyes and Horton, Joshua T. and Pu, Yixuan and Kapil, Venkat and Witt, William C. and Magd{\u a}u, Ioan-Bogdan and Cole, Daniel J. and Cs{\'a}nyi, G{\'a}bor},
196-
year = {2025},
197-
month = jan,
198-
number = {arXiv:2312.15211},
199-
eprint = {2312.15211},
200-
primaryclass = {physics},
201-
doi = {10.48550/arXiv.2312.15211},
202-
urldate = {2025-01-30},
203-
archiveprefix = {arXiv}
193+
@article{Kovacs-25-05,
194+
title = {{{MACE-OFF}}: {{Short-Range Transferable Machine Learning Force Fields}} for {{Organic Molecules}}},
195+
author = {Kov{\'a}cs, D{\'a}vid P{\'e}ter and Moore, J. Harry and Browning, Nicholas J. and Batatia, Ilyes and Horton, Joshua T. and Pu, Yixuan and Kapil, Venkat and Witt, William C. and Magd{\u a}u, Ioan-Bogdan and Cole, Daniel J. and Cs{\'a}nyi, G{\'a}bor},
196+
year = 2025,
197+
journal = {Journal of the American Chemical Society},
198+
volume = {147},
199+
number = {21},
200+
pages = {17598--17611},
201+
doi = {10.1021/jacs.4c07099},
202+
copyright = {https://creativecommons.org/licenses/by/4.0/}
204203
}
205204

206205
@article{Batatia-25-11,
@@ -279,19 +278,18 @@ @misc{Rhodes-25-04
279278
archiveprefix = {arXiv}
280279
}
281280

282-
@misc{Mahmoud-25-02,
283-
title = {Assessing Zero-Shot Generalisation Behaviour in Graph-Neural-Network Interatomic Potentials},
284-
author = {Ben Mahmoud, Chiheb and {El-Machachi}, Zakariya and Gierczak, Krystian A. and Gardner, John L. A. and Deringer, Volker L.},
285-
year = {2025},
286-
month = feb,
287-
number = {arXiv:2502.21317},
288-
eprint = {2502.21317},
289-
primaryclass = {physics},
290-
doi = {10.48550/arXiv.2502.21317},
291-
urldate = {2025-03-04},
292-
archiveprefix = {arXiv}
281+
@article{Mahmoud-25-11,
282+
title = {Assessing Zero-Shot Generalisation Behaviour in Graph-Neural-Network Interatomic Potentials},
283+
author = {Mahmoud, Chiheb Ben and {El-Machachi}, Zakariya and Gierczak, Krystian A. and Gardner, John L. A. and Deringer, Volker L.},
284+
year = 2025,
285+
journal = {Digital Discovery},
286+
volume = {4},
287+
number = {11},
288+
pages = {3389--3399},
289+
doi = {10.1039/D5DD00103J}
293290
}
294291

292+
295293
@article{Pickard-22-07,
296294
title = {Ephemeral Data Derived Potentials for Random Structure Search},
297295
author = {Pickard, Chris J.},

paper/paper.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The `graph-pes` package provides a **unified interface and framework** for defin
4747

4848
# Related work
4949

50-
`graph-pes` is beginning to drive projects within our research group, and we hope that it will be useful to many others. In recent work, we have described the use of `graph-pes` for fitting NequIP models to datasets created using `autoplex` [@Liu-25-08], for assessing zero-shot performance of different graph-network MLIPs [@Mahmoud-25-02], and for distilling atomistic foundation models [@Gardner-25-06].
50+
`graph-pes` is beginning to drive projects within our research group, and we hope that it will be useful to many others. In recent work, we have described the use of `graph-pes` for fitting NequIP models to datasets created using `autoplex` [@Liu-25-08], for assessing zero-shot performance of different graph-network MLIPs [@Mahmoud-25-11], and for distilling atomistic foundation models [@Gardner-25-06].
5151

5252
A number of existing packages offer training and validation pipelines for particular ML-PES architectures, including `schnetpack` [@schutt2019schnetpack; @schutt2023schnetpack], `deepmd-kit` [@Wang-18-07; @Zeng-23-08], `nequip` [@Batzner-22-05], `mace-torch` [@Batatia-22-10], `torchmd-net` [@TorchMDNet], and `fairchem` [@fairchem].
5353
These frameworks focus on their associated model families and do not share a common interface for training.
@@ -70,7 +70,7 @@ Full API details are available in the project documentation.
7070
All MLIP models in `graph-pes` are implemented as subclasses of the `GraphPESModel` base class.
7171
Implementations need only define a forward pass that returns a local energy for each atom or a total energy for the structure;
7272
the framework handles the calculation of forces and stress tensors in a conservative manner via automatic differentiation.
73-
We also support models that return direct force and stress tensor predictions (e.g., `TensorNet` or `orb-v3-*` with their optional direct force readout heads).
73+
We also support models that return direct force and stress tensor predictions (_e.g._, `TensorNet` or `orb-v3-*` with their optional direct force readout heads).
7474

7575
Building on the `GraphPESModel` class, we provide independent re-implementations of popular MLIP architectures, including `PaiNN` [@Schutt-21-06], `EDDP` [@Pickard-22-07], `NequIP` [@Batzner-22-05], `MACE` [@Batatia-22-10], and `TensorNet` [@Simeon-23-06].
7676
We use building blocks provided by `e3nn` [@Geiger-22-07] to implement models that act on spherical tensor decompositions.
@@ -90,7 +90,7 @@ Because all models conform to the same interface, all training features can be u
9090

9191
## Easy access to foundation models
9292

93-
A recent area of research is the development of "foundational" MLIPs that can describe the potential-energy surface of a wide range of systems. `graph-pes` integrates directly with the `mace-torch`, `mattersim`, and `orb-models` packages to provide access to, among others, the `MACE-MP` [@Batatia-25-11], `MatterSim` [@Yang-24-05], `orb-v2` [@Neumann-24-10], `MACE-OFF` [@Kovacs-25-01], `Egret-v1` [@Mann-25-05], and `orb-v3` [@Rhodes-25-04] families of models. Each of these integrations generates `GraphPESModels` that are directly compatible with all relevant `graph-pes` features.
93+
A recent area of research is the development of "foundational" MLIPs that can describe the potential-energy surface of a wide range of systems. `graph-pes` integrates directly with the `mace-torch`, `mattersim`, and `orb-models` packages to provide access to, among others, the `MACE-MP` [@Batatia-25-11], `MatterSim` [@Yang-24-05], `orb-v2` [@Neumann-24-10], `MACE-OFF` [@Kovacs-25-05], `Egret-v1` [@Mann-25-05], and `orb-v3` [@Rhodes-25-04] families of models. Each of these integrations generates `GraphPESModels` that are directly compatible with all relevant `graph-pes` features.
9494

9595
# Acknowledgements
9696

0 commit comments

Comments
 (0)