Update README.md
Browse files[UPDATE] Details got an update
README.md
CHANGED
|
@@ -116,17 +116,14 @@ Evaluating SchNet, PAINN, GemNet, DimeNet++, EquiFormerV2, MACE, NequIP, eSCN, a
|
|
| 116 |
|
| 117 |
## Data Format
|
| 118 |
|
| 119 |
-
Data is stored in **
|
| 120 |
|
| 121 |
| Field | Description |
|
| 122 |
|---|---|
|
| 123 |
| `positions` | Atomic coordinates (Å) |
|
| 124 |
| `numbers` | Atomic numbers |
|
| 125 |
-
| `energy` | Total PBE energy (eV) |
|
| 126 |
| `forces` | Per-atom force vectors (eV/Å) |
|
| 127 |
-
| `molecule_id` | Source molecule identifier |
|
| 128 |
-
| `snapshot_id` | Snapshot index within trajectory |
|
| 129 |
-
| `split` | `train` / `val` / `id_test` / `ood_test` |
|
| 130 |
|
| 131 |
Pre-computed split files for all four tasks are included so that reproducing the evaluation protocol does not require re-running any upstream generation stages.
|
| 132 |
|
|
@@ -147,11 +144,11 @@ snapshot_download(
|
|
| 147 |
|
| 148 |
```python
|
| 149 |
# Using ASE to read individual trajectory files
|
| 150 |
-
from ase.io import
|
| 151 |
|
| 152 |
-
|
| 153 |
-
energies = [
|
| 154 |
-
forces = [
|
| 155 |
```
|
| 156 |
|
| 157 |
---
|
|
@@ -185,7 +182,7 @@ The four task templates are defined over abstract fragment sets and reusable wit
|
|
| 185 |
|
| 186 |
## Citation
|
| 187 |
|
| 188 |
-
If you use GMD-26 in your research, please cite
|
| 189 |
|
| 190 |
```bibtex
|
| 191 |
@inproceedings{nourollah2026gmd26,
|
|
@@ -197,6 +194,8 @@ If you use GMD-26 in your research, please cite (This will be updated uppon acce
|
|
| 197 |
}
|
| 198 |
```
|
| 199 |
|
|
|
|
|
|
|
| 200 |
---
|
| 201 |
|
| 202 |
## Licence
|
|
|
|
| 116 |
|
| 117 |
## Data Format
|
| 118 |
|
| 119 |
+
Data is stored in **ASE trajectory format** (`.traj`), readable natively with the Atomic Simulation Environment. Each frame contains:
|
| 120 |
|
| 121 |
| Field | Description |
|
| 122 |
|---|---|
|
| 123 |
| `positions` | Atomic coordinates (Å) |
|
| 124 |
| `numbers` | Atomic numbers |
|
| 125 |
+
| `energy` | Total PBE/def2-TZVP+D3BJ energy (eV) |
|
| 126 |
| `forces` | Per-atom force vectors (eV/Å) |
|
|
|
|
|
|
|
|
|
|
| 127 |
|
| 128 |
Pre-computed split files for all four tasks are included so that reproducing the evaluation protocol does not require re-running any upstream generation stages.
|
| 129 |
|
|
|
|
| 144 |
|
| 145 |
```python
|
| 146 |
# Using ASE to read individual trajectory files
|
| 147 |
+
from ase.io.trajectory import Trajectory
|
| 148 |
|
| 149 |
+
traj = Trajectory("path/to/molecule.traj")
|
| 150 |
+
energies = [atoms.get_potential_energy() for atoms in traj]
|
| 151 |
+
forces = [atoms.get_forces() for atoms in traj]
|
| 152 |
```
|
| 153 |
|
| 154 |
---
|
|
|
|
| 182 |
|
| 183 |
## Citation
|
| 184 |
|
| 185 |
+
If you use GMD-26 in your research, please cite:
|
| 186 |
|
| 187 |
```bibtex
|
| 188 |
@inproceedings{nourollah2026gmd26,
|
|
|
|
| 194 |
}
|
| 195 |
```
|
| 196 |
|
| 197 |
+
> **Note:** The paper is currently under review. If accepted, the citation will be updated with the final publication details.
|
| 198 |
+
|
| 199 |
---
|
| 200 |
|
| 201 |
## Licence
|