Gregor Simm commited on
Commit
92e1496
·
1 Parent(s): 92d6cd2

add info to README

Browse files
Files changed (1) hide show
  1. README.md +51 -1
README.md CHANGED
@@ -6,4 +6,54 @@ tags:
6
  - multi-fidelity
7
  size_categories:
8
  - 1M<n<10M
9
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  - multi-fidelity
7
  size_categories:
8
  - 1M<n<10M
9
+ ---
10
+
11
+ # Multi-Fidelity Training of Machine-Learned Force Fields — Dataset
12
+
13
+ Dataset accompanying the paper
14
+ [*Understanding Multi-Fidelity Training of Machine-Learned Force-Fields*](https://arxiv.org/abs/2506.14963).
15
+
16
+
17
+ ## File Structure
18
+
19
+ ```
20
+ data/
21
+ ├── data.lmdb # LMDB database with atomic structures and labels
22
+ ├── metadata.parquet # Lightweight metadata index
23
+ ├── schema.json # Schema for the metadata
24
+ ├── {method}_train_{a,b,c,d}.json # Train/validation/test split definitions (12 files)
25
+ ```
26
+
27
+ - **`data.lmdb`** — The main database containing atomic positions, atomic numbers, energies, and forces for each structure.
28
+ - **`metadata.parquet`** — A metadata index with columns: `formula`, `conformation_idx`, `method`, `n_atoms`, `energy`, `forces_present`, `energy_unit`, `forces_unit`, `idx`.
29
+ - **`{method}_train_{a,b,c,d}.json`** — Split files defining train, validation, and test indices for each method (`dft`, `xtb`, `cc`) and training group (`a`–`d`). Indices reference entries in the LMDB database.
30
+ - **`schema.json`** — Schema definition for the metadata fields.
31
+
32
+ ## Code
33
+
34
+ The code to reproduce the experiments in the paper is available at
35
+ [github.com/microsoft/multi-fidelity-training-mlff](https://github.com/microsoft/multi-fidelity-training-mlff).
36
+
37
+ ## Citation
38
+
39
+ ```bibtex
40
+ @online{Gardner2025Understanding,
41
+ title = {Understanding Multi-Fidelity Training of Machine-Learned Force-Fields},
42
+ author = {Gardner, John L. A. and Schulz, Hannes and Helie, Jean and Sun, Lixin and Simm, Gregor N. C.},
43
+ date = {2025-06-17},
44
+ eprint = {2506.14963},
45
+ eprinttype = {arXiv},
46
+ eprintclass = {physics},
47
+ doi = {10.48550/arXiv.2506.14963},
48
+ url = {http://arxiv.org/abs/2506.14963}
49
+ }
50
+ ```
51
+
52
+ ## License
53
+
54
+ This dataset is released under the [MIT License](https://opensource.org/licenses/MIT).
55
+
56
+ ## Contact
57
+
58
+ - John Gardner — [johngardner@microsoft.com](mailto:johngardner@microsoft.com)
59
+ - Gregor Simm — [gregorsimm@microsoft.com](mailto:gregorsimm@microsoft.com)