Views
No views yet
MoMa: A Modular Deep Learning Framework for Material Property PredictionBotian Wang, Yawen Ouyang, Yaohui Li, Yiqun Wang, Haorui Cui, Jianbing Zhang, Xiaonan Wang, Wei-Ying Ma, Hao ZhouICLR 2026
.pt checkpoint files, each trained on a distinct material property prediction task from the Matminer datasets. The modules cover electronic, thermal, mechanical, and optical properties across different material databases:| File | Source | Property | Category |
|---|---|---|---|
mp_eform.pt | Materials Project | Formation Energy | Thermal |
mp_bandgap.pt | Materials Project | Band Gap | Electronic |
mp_gvrh.pt | Materials Project | Shear Modulus (VRH) | Mechanical |
mp_kvrh.pt | Materials Project | Bulk Modulus (VRH) | Mechanical |
castelli_eform.pt | Castelli et al. | Formation Energy | Thermal |
jarvis_eform.pt | JARVIS-DFT | Formation Energy | Thermal |
jarvis_bandgap.pt | JARVIS-DFT | Band Gap (OPT) | Electronic |
jarvis_gvrh.pt | JARVIS-DFT | Shear Modulus (VRH) | Mechanical |
jarvis_kvrh.pt | JARVIS-DFT | Bulk Modulus (VRH) | Mechanical |
jarvis_dielectric_opt.pt | JARVIS-DFT | Dielectric Constant (OPT) | Electronic |
n_Seebeck.pt | Ricci et al. | n-type Seebeck Coefficient | Thermoelectric |
n_avg_eff_mass.pt | Ricci et al. | n-type Average Effective Mass | Thermoelectric |
n_e_cond.pt | Ricci et al. | n-type Electrical Conductivity | Thermoelectric |
n_th_cond.pt | Ricci et al. | n-type Thermal Conductivity | Thermoelectric |
p_Seebeck.pt | Ricci et al. | p-type Seebeck Coefficient | Thermoelectric |
p_avg_eff_mass.pt | Ricci et al. | p-type Average Effective Mass | Thermoelectric |
p_e_cond.pt | Ricci et al. | p-type Electrical Conductivity | Thermoelectric |
p_th_cond.pt | Ricci et al. | p-type Thermal Conductivity | Thermoelectric |
huggingface_hub (Python)1from huggingface_hub import snapshot_download
2
3snapshot_download(
4 repo_id="GenSI/MoMa-modules-ICLR",
5 repo_type="model",
6 local_dir="./hub",
7)1pip install huggingface_hub
2hf download GenSI/MoMa-modules-ICLR --repo-type model --local-dir ./hubhub/ directory under the MoMa codebase root:MoMa/
├── hub/
│ ├── mp_eform.pt
│ ├── mp_bandgap.pt
│ └── ... (18 modules)
├── configs/
├── scripts/
└── ...1# Adaptive Module Assembly (can be skipped using precomputed results in json/)
2bash scripts/extract_embeddings.sh
3python scripts/run_knn.py
4python scripts/weight_optimize.py
5
6# Downstream Fine-tuning with MoMa
7bash scripts/finetune_moma.sh.pt file is a standard PyTorch checkpoint containing a state_dict:1import torch
2
3ckpt = torch.load("hub/mp_eform.pt", map_location="cpu")
4state_dict = ckpt["state_dict"]1@article{wang2025moma,
2 title={MoMa: A Modular Deep Learning Framework for Material Property Prediction},
3 author={Wang, Botian and Ouyang, Yawen and Li, Yaohui and Wang, Yiqun and Cui, Haorui and Zhang, Jianbing and Wang, Xiaonan and Ma, Wei-Ying and Zhou, Hao},
4 journal={arXiv preprint arXiv:2502.15483},
5 year={2025}
6}