File size: 1,900 Bytes
02fd6af c80e8fc 02fd6af d21b9ac 02fd6af d21b9ac 02fd6af d21b9ac 02fd6af d21b9ac 02fd6af c80e8fc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | ---
license: other
task_categories:
- text-generation
- tabular-regression
tags:
- materials-science
- crystal-structure
- materials-project
- parquet
pretty_name: CrystalReasoner MP Data
---
# CrystalReasoner-MP
This dataset contains the Materials Project-derived reference table used by CrystalReasoner for crystal-structure generation, property-conditioned prompts, and evaluation. The file is stored as a Parquet export of the project shelve database so it can be downloaded and reconstructed locally.
## Files
- `MP_shelve.parquet`: Parquet export of the reference data table.
## Dataset Fields
The current Parquet file contains 200290 rows. These columns are from Materials Project:
```text
material_id
structure
energy_above_hull
formation_energy_per_atom
is_stable
band_gap
is_metal
efermi
homogeneous_poisson
description
formula_pretty
```
and these columns are from our MLIP:
```text
bulk_modulus
shear_modulus
thermal_expansion_300k
```
The `structure` column is serialized in the project simple-crystal text format. Some property columns may contain JSON-serialized values or missing values, depending on data availability.
## Usage
Download the Parquet file and place it at the expected project path:
```python
from huggingface_hub import hf_hub_download
path = hf_hub_download(
repo_id="CrystalReasoner/CrystalReasoner-MP",
repo_type="dataset",
filename="MP_shelve.parquet",
local_dir="assets/MP",
)
print(path)
```
Then recreate the shelve database used by the training and evaluation code:
```bash
python scripts/parquet_to_shelve.py
```
The reconstructed `assets/MP/MP_shelve` database is used by the training datasets, generation code, and ground-truth evaluation metrics.
## License
This dataset is derived from the Materials Project database.
Please refer to the Materials Project Terms of Use:
https://next-gen.materialsproject.org/about/terms |