sid string | formula string | phase string | material string | image_source string | source_doi string | cif_origin string | license string | n_atoms int64 | a float64 | b float64 | c float64 | alpha float64 | beta float64 | gamma float64 | volume float64 | space_group int64 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
real01_MoTe2_monolayer | Te2Mo | Monolayer 2H-MoTe2 | Monolayer 2H-MoTe2 | 2H-MoTe2 large-FOV HAADF (Zenodo 5520169, Guo et al.) | 10.1038/s41524-021-00642-1 | COD 2310465 (bulk) -> single layer extracted | CC BY 4.0 | 3 | 3.519 | 3.519 | 20 | 90 | 90 | 120 | 214.486 | 187 |
real02_WSe2_monolayer | WSe2 | Monolayer 2H-WSe2 | Monolayer 2H-WSe2 | Monolayer WSe2 HAADF (Zenodo 7696721, Tan et al.) | 10.1038/s41524-023-01042-3 | COD 9012193 (bulk) -> single layer extracted | CC BY 4.0 | 3 | 3.282 | 3.282 | 20 | 90 | 90 | 120 | 186.568 | 187 |
real03_WS2_monolayer | WS2 | Monolayer 2H-WS2 (+S vacancies) | Monolayer 2H-WS2 (+S vacancies) | Monolayer WS2 HAADF (figshare 25310755, Wang et al.) | 10.1038/s41467-024-53880-4 | COD 9012191 (bulk) -> single layer extracted | CC BY 4.0 | 3 | 3.1532 | 3.1532 | 20 | 90 | 90 | 120 | 172.212 | 187 |
real04_MoS2_monolayer | MoS2 | Monolayer 1H-MoS2 | Monolayer 1H-MoS2 | Monolayer MoS2 ADF-STEM, Wikimedia Commons 'MoS2_vacancies.jpg' (Hong et al., Nat. Commun. 2015) | 10.1038/ncomms7293 | canonical 1H-MoS2 (a=3.16) | CC BY 4.0 | 3 | 3.16 | 3.16 | 20 | 90 | 90 | 120 | 172.956 | 187 |
real05_graphene | C | Monolayer graphene | Monolayer graphene | Aberration-corrected ADF-STEM graphene, Wikimedia Commons 'Graphene-TEM.jpg' (M. H. Gass et al.) | 10.1038/nnano.2008.280 | canonical graphene (a=2.46) | CC BY 3.0 | 2 | 2.46 | 2.46 | 20 | 90 | 90 | 120 | 104.817 | 191 |
STEM2Crystal-Bench
STEM2Crystal-Bench is the benchmark for the paper "From Noisy STEM to Crystal Structure: Evidence-Structure CoDiffusion under Composition Constraints" (Chen & You, KDD 2026, Oral), which introduces STEM2Crystal CoDiffusion (SCCD). It evaluates methods that reconstruct a crystal structure from a noisy STEM image when the composition is known. The release has a large synthetic set with controlled noise and a small set of real STEM images, with ground-truth CIFs and a fixed test split.
Code and a live leaderboard: https://github.com/PEESEgroup/STEM2Crystal-Bench
Contents
The release has two test configs:
| Config | #samples | Source | Role |
|---|---|---|---|
synthetic |
1021 | Physics-inspired forward pipeline (paper Appendix A.3) applied to curated 2D slab prototypes from C2DB + MC2D | Primary evaluation used in paper Table 1 under three noise regimes (low / mid / high) |
real_stem_eval5 |
5 | Real, open-licensed atomic-resolution STEM images of 2D monolayer materials, paired with single-layer (monolayer) ground-truth CIFs | Out-of-distribution real-microscopy probe (paper Β§5.4, Table 2) |
Folder structure
STEM2Crystal-Bench/
βββ README.md
βββ LICENSE # CC BY 4.0
βββ synthetic/
β βββ cifs/ # 1021 ground-truth CIFs (C2DB + MC2D)
β βββ images/
β β βββ low/ # 3063 images (1021Γ3 views), low shot noise
β β βββ mid/ # 3063 images, medium noise
β β βββ high/ # 3063 images, high noise
β βββ masks/ # atom-position target masks
β βββ split.json # test split IDs (same as paper Β§5)
β βββ metadata.jsonl # per-sample lattice/formula/SG
βββ real_stem_eval5/
βββ cifs/ # 5 COD ground-truth CIFs
βββ images/ # 5 real experimental STEM PNGs
βββ metadata.jsonl # per-sample with source attribution
All images in synthetic/ are resized to 256Γ256 (the input size used by SCCD and baselines). The full-resolution abTEM output (1286Γ866 per image, β88 GB total) is not redistributed here; the simulation recipe is released with the paper's code.
Loading
from datasets import load_dataset
synth = load_dataset("gary23ai/STEM2Crystal-Bench", "synthetic", split="test")
real = load_dataset("gary23ai/STEM2Crystal-Bench", "real_stem_eval5", split="test")
Each sample exposes mp_id, formula, lattice parameters (a, b, c, alpha, beta, gamma), space_group, and per-noise image paths.
real_stem_eval5/ config β data sources
The 5 real experimental samples are all genuine 2D monolayer materials (4 transition-metal dichalcogenides spanning Mo/W Γ S/Se/Te, plus graphene), assembled as an out-of-distribution real-microscopy probe. Each image is redistributed here only because the original source is open-licensed (CC BY 4.0 or CC BY 3.0); the ground truth is the single-layer (monolayer) structure, so a 2D-slab model can match it without prototype templating. We explicitly acknowledge the original authors below.
| # | sid | Material | Phase | Image source | Source paper | DOI | License |
|---|---|---|---|---|---|---|---|
| 1 | real01_MoTe2_monolayer |
monolayer 2H-MoTeβ | hexagonal P-6m2 (monolayer) | Zenodo 5520169 | Guo et al., npj Comput Mater (2021) | 10.1038/s41524-021-00642-1 | CC BY 4.0 |
| 2 | real02_WSe2_monolayer |
monolayer 2H-WSeβ | hexagonal P-6m2 (monolayer) | Zenodo 7696721 | Tan et al., npj Comput Mater (2023) | 10.1038/s41524-023-01042-3 | CC BY 4.0 |
| 3 | real03_WS2_monolayer |
monolayer 2H-WSβ (+S vacancies) | hexagonal P-6m2 (monolayer) | figshare 25310755 | Wang et al., Nat Commun (2024) | 10.1038/s41467-024-53880-4 | CC BY 4.0 |
| 4 | real04_MoS2_monolayer |
monolayer 1H-MoSβ | hexagonal P-6m2 | Wikimedia Commons MoS2_vacancies.jpg |
Hong et al., Nat Commun 6 (2015) | 10.1038/ncomms7293 | CC BY 4.0 |
| 5 | real05_graphene |
monolayer graphene | honeycomb P6/mmm | Wikimedia Commons Graphene-TEM.jpg |
Gass et al., Nat Nanotechnol 3 (2008) | 10.1038/nnano.2008.280 | CC BY 3.0 |
Ground-truth CIFs are the single-layer (monolayer) structures (TMD layers derived from their COD bulk entries; MoSβ and graphene use the canonical monolayer cells). Source paper PDFs are not redistributed; please consult the DOIs above.
Citation
If you use STEM2Crystal-Bench, please cite our paper (KDD 2026, Oral) and the original source
papers for the real_stem_eval5 images listed above.
@inproceedings{chen2026stem2crystal,
title = {From Noisy STEM to Crystal Structure: Evidence-Structure CoDiffusion under Composition Constraints},
author = {Chen, Guangyao and You, Fengqi},
booktitle = {Proceedings of the 32nd ACM SIGKDD Conference on Knowledge Discovery and Data Mining (KDD)},
year = {2026},
note = {Oral presentation}
}
Code + live leaderboard: https://github.com/PEESEgroup/STEM2Crystal-Bench
License
- Benchmark assembly, metadata, splits, synthetic STEM renderings: CC BY 4.0
- Ground-truth CIFs (
synthetic/cifs/: 764 from C2DB + 257 from MC2D;real_stem_eval5/cifs/: monolayer structures): upstream licenses (C2DB is CC BY 4.0, MC2D is CC BY 4.0 via Materials Cloud, COD is public-domain) - Real STEM images (
real_stem_eval5/images/): CC BY 4.0 (four TMD monolayers) and CC BY 3.0 (graphene), redistributed under the terms of the original open-license sources (Zenodo / figshare / Wikimedia Commons), with full attribution to the source authors in the table above
- Downloads last month
- 734