Views
No views yet
| Task | N | TRIADS | Params | Rank |
|---|---|---|---|---|
matbench_steels (yield strength) | 312 | 91.20 MPa | 225K | #3 |
matbench_expt_gap (band gap) | 4,604 | 0.3068 eV | 100K | #2 composition-only |
matbench_expt_ismetal (metal?) | 4,921 | 0.9655 ROC-AUC | 100K | #1 composition-only |
matbench_glass (glass forming) | 5,680 | 0.9285 ROC-AUC | 44K | #2 |
matbench_jdft2d (exfol. energy) | 636 | 35.89 meV/atom | 75K | #1 no-pretraining |
matbench_phonons (phonon freq.) | 1,265 | 41.91 cm⁻¹ | 247K | #1 no-pretraining |
huggingface_hub:1from huggingface_hub import hf_hub_download
2import torch
3
4# Download one benchmark's weights (contains all folds compiled)
5ckpt = torch.load(
6 hf_hub_download("Rtx09/TRIADS", "steels/weights.pt"),
7 map_location="cpu"
8)
9# ckpt['folds'] -> list of fold dicts, each with 'model_state' and 'test_mae'
10# ckpt['n_extra'] -> int (needed for model init)
11# ckpt['config'] -> dict (d_attn, d_hidden, ff_dim, dropout, max_steps)| Benchmark | File | Folds | Notes |
|---|---|---|---|
| matbench_steels | steels/weights.pt | 5 | HybridTRIADS V13A · 225K · 5-seed ensemble compiled |
| matbench_expt_gap | expt_gap/weights.pt | 5 | HybridTRIADS V3 · 100K |
| matbench_expt_ismetal | is_metal/weights.pt | 5 | HybridTRIADS · 100K |
| matbench_glass | glass/weights.pt | 5 | HybridTRIADS · 44K |
| matbench_jdft2d | jdft2d/weights.pt | 5 | HybridTRIADS V4 · 75K · 5-seed ensemble compiled |
| matbench_phonons | phonons/weights.pt | 5 | GraphTRIADS V6 · 247K · also needs phonons/dataset.pt |
1@article{tiwari2026triads,
2 author = {Rudra Tiwari},
3 title = {TRIADS: Tiny Recursive Information-Attention with Deep Supervision},
4 year = {2026},
5 doi = {10.5281/zenodo.19200579},
6 url = {https://doi.org/10.5281/zenodo.19200579},
7 note = {Code: https://github.com/Rtx09x/TRIADS; Models: https://huggingface.co/Rtx09/TRIADS}
8}