Add dataset card for LLEMABench
#2
by nielsr HF Staff - opened
README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- other
|
| 5 |
+
tags:
|
| 6 |
+
- materials-science
|
| 7 |
+
- chemistry
|
| 8 |
+
- ai-for-science
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# LLEMABench
|
| 12 |
+
|
| 13 |
+
LLEMABench is a benchmark suite for materials discovery tasks, introduced in the paper [LLEMA: Evolutionary Search with LLMs for Multi-Objective Materials Discovery](https://huggingface.co/papers/2510.22503).
|
| 14 |
+
|
| 15 |
+
The benchmark consists of 14 realistic tasks across various domains, including:
|
| 16 |
+
- Electronics
|
| 17 |
+
- Energy
|
| 18 |
+
- Coatings
|
| 19 |
+
- Optics
|
| 20 |
+
- Aerospace
|
| 21 |
+
|
| 22 |
+
It evaluates candidates based on chemical plausibility, thermodynamic stability, and multi-objective property alignment (e.g., bandgap, formation energy, and bulk modulus).
|
| 23 |
+
|
| 24 |
+
## Links
|
| 25 |
+
|
| 26 |
+
- **GitHub Repository**: [https://github.com/scientific-discovery/LLEMA](https://github.com/scientific-discovery/LLEMA)
|
| 27 |
+
- **Paper**: [https://huggingface.co/papers/2510.22503](https://huggingface.co/papers/2510.22503)
|
| 28 |
+
|
| 29 |
+
## Evaluation and Usage
|
| 30 |
+
|
| 31 |
+
The official implementation provides scripts to evaluate CIF files for validity (property constraints) and thermodynamic stability.
|
| 32 |
+
|
| 33 |
+
### Validity Analysis
|
| 34 |
+
To evaluate CIF files against task-specific property constraints:
|
| 35 |
+
```bash
|
| 36 |
+
python calculate_validity.py --tasks "Hard, Stiff Ceramics"
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
### Stability Analysis
|
| 40 |
+
To analyze the thermodynamic stability of candidates from validity analysis results:
|
| 41 |
+
```bash
|
| 42 |
+
python calculate_stability.py --task <task_name>
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
## Citation
|
| 46 |
+
|
| 47 |
+
```bibtex
|
| 48 |
+
@inproceedings{abhyankar2026llema,
|
| 49 |
+
title={LLEMA: Accelerating Materials Design via {LLM}-Guided Evolutionary Search},
|
| 50 |
+
author={Abhyankar, Nikhil and Kabra, Sanchit and Desai, Saaketh and Reddy, Chandan K},
|
| 51 |
+
booktitle={The Fourteenth International Conference on Learning Representations (ICLR)},
|
| 52 |
+
year={2026},
|
| 53 |
+
url={https://openreview.net/forum?id=TIqzhBvCNB}
|
| 54 |
+
}
|
| 55 |
+
```
|