add readme card
Browse files
README.md
CHANGED
|
@@ -10,4 +10,76 @@ tags:
|
|
| 10 |
- computational-biophysics
|
| 11 |
- force-field
|
| 12 |
- tensornet
|
| 13 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
- computational-biophysics
|
| 11 |
- force-field
|
| 12 |
- tensornet
|
| 13 |
+
---
|
| 14 |
+
# AMARO: All Heavy-Atom Transferable Neural Network Potential
|
| 15 |
+
|
| 16 |
+
This repository hosts the trained checkpoint for **AMARO v1.0**.
|
| 17 |
+
|
| 18 |
+
All-atom molecular simulations provide detailed insight into macromolecular phenomena, but their computational cost limits the exploration of complex biological processes.
|
| 19 |
+
|
| 20 |
+
**AMARO**, **Advanced Machine-learning Atomic Representation Omni-force-field**, is a neural network potential that combines the O(3)-equivariant message-passing architecture **TensorNet** with a coarse-graining map that excludes hydrogen atoms.
|
| 21 |
+
|
| 22 |
+
AMARO demonstrates that coarse-grained neural network potentials can be trained without explicit prior-energy terms while retaining stable protein dynamics, scalability, and transferability.
|
| 23 |
+
|
| 24 |
+
## Representation
|
| 25 |
+
|
| 26 |
+
AMARO uses a **no-hydrogen, no-water mapping**. Each retained bead corresponds to one protein heavy atom.
|
| 27 |
+
|
| 28 |
+
For each retained heavy atom, the reference force is constructed as the sum of:
|
| 29 |
+
|
| 30 |
+
1. the force acting on the heavy atom; and
|
| 31 |
+
2. the forces acting on hydrogen atoms constrained to that heavy atom.
|
| 32 |
+
|
| 33 |
+
This mapping reduces the number of degrees of freedom while retaining a detailed representation of protein geometry.
|
| 34 |
+
|
| 35 |
+
## Important: `z` Values Are AMARO Bead Types
|
| 36 |
+
|
| 37 |
+
The checkpoint does not interpret `z` as conventional atomic numbers alone.
|
| 38 |
+
|
| 39 |
+
Each bead is assigned one of **12 learned embedding types**, determined by:
|
| 40 |
+
|
| 41 |
+
* the identity of the heavy atom; and
|
| 42 |
+
* the number of hydrogen atoms aggregated to it.
|
| 43 |
+
|
| 44 |
+
This representation distinguishes chemically different environments and electronic hybridizations that would otherwise share the same element.
|
| 45 |
+
|
| 46 |
+
Inputs must therefore be prepared using the same AMARO mapping and bead-type assignment used during training. Passing ordinary atomic numbers without applying the AMARO remapping will produce invalid predictions.
|
| 47 |
+
|
| 48 |
+
## Model Inputs and Outputs
|
| 49 |
+
|
| 50 |
+
### Inputs
|
| 51 |
+
|
| 52 |
+
* `z`: one-dimensional tensor containing AMARO bead-type, with shape `(N,)`
|
| 53 |
+
* `pos`: Cartesian coordinates in Å, with shape `(N, 3)`
|
| 54 |
+
* `batch`: optional system-assignment tensor with shape `(N,)`
|
| 55 |
+
* `box`: optional periodic box vectors, where supported by the installed TorchMD-Net version
|
| 56 |
+
|
| 57 |
+
### Outputs
|
| 58 |
+
|
| 59 |
+
* `energy`: learned effective potential for each system
|
| 60 |
+
* `forces`: negative gradient of the effective potential with respect to bead positions
|
| 61 |
+
|
| 62 |
+
The model was trained against forces expressed in:
|
| 63 |
+
|
| 64 |
+
```text
|
| 65 |
+
kcal mol⁻¹ Å⁻¹
|
| 66 |
+
```
|
| 67 |
+
|
| 68 |
+
Because the model was trained using force labels without energy labels, its absolute energy reference is not physically calibrated.
|
| 69 |
+
|
| 70 |
+
## Citation
|
| 71 |
+
|
| 72 |
+
Please cite the following publication when using this checkpoint:
|
| 73 |
+
|
| 74 |
+
```bibtex
|
| 75 |
+
@article{mirarchi2024amaro,
|
| 76 |
+
title = {AMARO: All Heavy-Atom Transferable Neural Network Potentials of Protein Thermodynamics},
|
| 77 |
+
author = {Mirarchi, Antonio and Pel{\'a}ez, Ra{\'u}l P. and Simeon, Guillem and De Fabritiis, Gianni},
|
| 78 |
+
journal = {Journal of Chemical Theory and Computation},
|
| 79 |
+
volume = {20},
|
| 80 |
+
number = {22},
|
| 81 |
+
pages = {9871--9878},
|
| 82 |
+
year = {2024},
|
| 83 |
+
publisher = {ACS Publications}
|
| 84 |
+
}
|
| 85 |
+
```
|