theNotfish02 commited on
Commit
b136806
·
verified ·
1 Parent(s): 788fd1d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +95 -2
README.md CHANGED
@@ -21,6 +21,99 @@ configs:
21
  path: "bench/*.json"
22
  ---
23
 
24
- In each json, there are three keys: `action_prompt`, `input`, and `output`, where `input` and `output` are the structure information in CIF format. Insert `action_prompt` and `input` into the system prompt and then call LLM/Agent to start the task.
25
 
26
- The `bench_data` folder contains the data used in the AtomWorld Bench. Besides, we have generated ~5K data for each action, which can be used as training set.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  path: "bench/*.json"
22
  ---
23
 
24
+ # AtomWorldBench
25
 
26
+ AtomWorldBench is a benchmark and dataset for evaluating the ability of Large Language Models (LLMs) and agents to perform **3D crystal structure manipulation** from natural language instructions.
27
+
28
+ Given an input crystal structure in CIF format and a textual instruction, the model must generate the resulting crystal structure after applying the requested modification.
29
+
30
+ The dataset is released alongside the AtomWorld benchmark framework and is intended for:
31
+
32
+ - Benchmarking spatial reasoning abilities of LLMs
33
+ - Training structure-editing agents
34
+ - Supervised fine-tuning (SFT)
35
+ - Reinforcement learning and reward modeling research
36
+ - Materials-science agent evaluation
37
+
38
+ ## Task Description
39
+
40
+ Each example contains:
41
+
42
+ ```json
43
+ {
44
+ "action_prompt": "...",
45
+ "input": "...",
46
+ "output": "...",
47
+ // ... other metadata
48
+ }
49
+ ```
50
+
51
+ In addition, the repository provides a shared `system_prompt.txt` that can be used for every task.
52
+
53
+ where:
54
+
55
+ | Field | Description |
56
+ |---------|-------------|
57
+ | `action_prompt` | Natural-language instruction describing the required structure modification |
58
+ | `input` | Input crystal structure in CIF format |
59
+ | `output` | Ground-truth crystal structure after applying the instruction |
60
+
61
+ The task is:
62
+
63
+ > Given (`action_prompt`, `input`), generate `output`.
64
+
65
+
66
+ The `bench_data` folder contains the data used in the AtomWorld Bench. Besides, we have generated ~5K data for each action, which can be used as training set.
67
+
68
+
69
+ ## Evaluation
70
+
71
+ AtomWorld uses structure-aware evaluation rather than text matching.
72
+
73
+ Typical verification steps include:
74
+
75
+ 1. CIF parsing
76
+ 2. Atom-count verification
77
+ 3. Structure matching
78
+ 4. RMSD calculation
79
+
80
+ For official evaluation and benchmarking tools, see the AtomWorld repository:
81
+
82
+ https://github.com/MasterAI-EAM/atomworld
83
+
84
+ ## Repository Relationship
85
+
86
+ This Hugging Face repository contains the released datasets only.
87
+
88
+ The GitHub repository provides:
89
+
90
+ - evaluation code
91
+ - benchmark runner
92
+ - dataset generation pipeline
93
+ - API server for agent benchmarking
94
+ - visualization and analysis utilities
95
+
96
+ ## Limitations
97
+
98
+ The dataset focuses on crystal-structure manipulation and does not directly evaluate:
99
+
100
+ - materials-property prediction
101
+ - electronic structure reasoning
102
+ - synthesis planning
103
+ - reaction prediction
104
+
105
+ Performance on AtomWorldBench should therefore be interpreted as a measure of structure-editing and spatial reasoning ability rather than general materials-science expertise.
106
+
107
+ ## Citation
108
+
109
+ If you use AtomWorldBench in your work, please cite:
110
+
111
+ ```bibtex
112
+ @misc{lv2025atomworldbenchmarkevaluatingspatial,
113
+ title={AtomWorld: A Benchmark for Evaluating Spatial Reasoning in Large Language Models on Crystalline Materials},
114
+ author={Taoyuze Lv and Alexander Chen and Fengyu Xie and Chu Wu and Jeffrey Meng and Dongzhan Zhou and Bram Hoex and Zhicheng Zhong and Tong Xie},
115
+ year={2025},
116
+ eprint={2510.04704},
117
+ archivePrefix={arXiv},
118
+ primaryClass={cond-mat.mtrl-sci}
119
+ }