File size: 7,967 Bytes
f15d29e | 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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 | ---
frameworks:
- ""
language:
- en
license: mit
tags:
- OneScience
- MatterGen
- materials-science
- crystal-generation
- diffusion-model
- graph-neural-network
- conditional-generation
- training
- fine-tuning
tasks: []
---
<p align="center">
<strong>
<span style="font-size: 30px;">MatterGen</span>
</strong>
</p>
# Model Introduction
MatterGen is a generative model for inorganic materials developed by Microsoft Research. It jointly generates elemental compositions, unit cells, and periodic atomic coordinates, and supports candidate crystal generation conditioned on material properties.
Paper: *MatterGen: a generative model for inorganic materials design*<br>
Reference implementation: https://github.com/microsoft/mattergen
# Model Description
MatterGen uses a diffusion model to learn distributions over atomic species, fractional coordinates, and crystal lattices. It supports unconditional crystal generation and conditional generation based on properties such as chemical system, space group, magnetic density, band gap, and bulk modulus.
This repository contains the OneScience-adapted MatterGen model, diffusion and sampling code, and entry points for training, property fine-tuning, crystal generation, and data conversion. Model code is located in `model/`; data processing, general-purpose network layers, and property embeddings are provided by OneScience MatChem.
# Use Cases
| Use case | Description |
| :---: | :--- |
| Unconditional crystal generation | Generate new candidate crystal structures with the base checkpoint |
| Property-conditioned generation | Generate structures for target properties such as magnetic density, band gap, and bulk modulus |
| Fixed-composition structure prediction | Search for possible crystal structures for a specified composition |
| Training from scratch | Train with MP-20 or data compatible with the MatterGen cache format |
| Property fine-tuning | Add a property adapter to a pretrained model and fine-tune it |
| Environment connectivity check | Verify OneScience, the checkpoint, and GPU/DCU availability by generating one sample |
# Usage
## 1. Using OneCode
Try intelligent, one-click AI4S programming in the OneCode online environment:
[Try intelligent, one-click AI4S programming](https://web-2069360198568017922-iaaj.ksai.scnet.cn:58043/home)
## 2. Manual Installation and Usage
**Hardware requirements**
- A GPU or DCU is recommended.
- A CPU can be used for import and configuration connectivity checks, but full generation and training will be slow.
- A DCU requires DTK to match the PyTorch build. Single-sample generation has been verified with DTK 25.04.2 and `torch 2.5.1+das.opt1.dtk25042`.
### Download the Model Package
```bash
hf download --model OneScience-Sugon/Mattergen --local-dir ./Mattergen
cd Mattergen
```
### Install the Runtime Environment
**DCU environment**
```bash
# Activate DTK and conda first
module load compiler/dtk/25.04.2
conda create -n onescience311 python=3.11 -y
conda activate onescience311
# uv installation is also supported
pip install onescience[matchem-dcu] \
-i http://mirrors.onescience.ai:3141/pypi/simple/ \
--trusted-host mirrors.onescience.ai
```
**GPU environment**
```bash
# Activate conda first
conda create -n onescience311 python=3.11 -y \
libstdcxx-ng=12 libgcc-ng=12 gcc_linux-64=12 gxx_linux-64=12
conda activate onescience311
# uv installation is also supported
pip install onescience[matchem-gpu] \
-i http://mirrors.onescience.ai:3141/pypi/simple/ \
--trusted-host mirrors.onescience.ai
```
### Training Data
MatterGen training uses a converted data cache. The MP-20 dataset is available on Hugging Face and can be downloaded directly:
```bash
hf download --dataset OneScience-Sugon/mp20 --local-dir ./datasets/mp20
```
The downloaded MatterGen cache is located at:
```text
datasets/mp20/data/MP20/cache/mp_20/
βββ train/
βββ val/
βββ test/
```
The default training YAML cannot use the downloaded data until you add its actual path under `args`. For example, update `demo/configs/train_8dcu.yaml` as follows:
```yaml
args:
data_module: mp_20
data_module.root_dir: ./datasets/mp20/data/MP20/cache/mp_20
```
For property fine-tuning, also add `data_module.root_dir` under `args` in `demo/configs/finetune_dft_mag_density_smoke.yaml`. If you downloaded the data elsewhere, use the corresponding absolute path.
Convert custom CSV data first:
```bash
python csv_to_dataset.py \
--csv-folder /path/to/csv_folder \
--dataset-name my_dataset \
--cache-folder ./datasets/cache
```
### Trained Weights
After downloading the model package with the Hugging Face command above, the pretrained checkpoints are located in `weight/`:
```text
weight/
βββ mattergen_base/
β βββ config.yaml
β βββ checkpoints/
β βββ last.ckpt
βββ dft_mag_density/
βββ config.yaml
βββ checkpoints/
βββ last.ckpt
```
The repository also provides property-conditioned checkpoints for `chemical_system`, `dft_band_gap`, `dft_mag_density`, `ml_bulk_modulus`, and `space_group`. When using a demo YAML, set `checkpoint` in `demo/configs/generate_base.yaml` or `demo/configs/generate_dft_mag_density.yaml` to the corresponding `./weight/<model_name>` path. For fine-tuning, update `adapter.model_path` in `demo/configs/finetune_dft_mag_density_smoke.yaml`.
### Inference
Generate one crystal structure unconditionally:
```bash
python generate.py \
--checkpoint ./weight/mattergen_base \
--output outputs/generate/mattergen_base \
--batch-size 1 \
--num-batches 1
```
The generated outputs include:
```text
outputs/generate/mattergen_base/
βββ generated_crystals.extxyz
βββ generated_crystals_cif.zip
```
Magnetic-density-conditioned generation requires the matching property checkpoint:
```bash
python generate.py \
--checkpoint ./weight/dft_mag_density \
--output outputs/generate/dft_mag_density \
--batch-size 1 \
--num-batches 1 \
--properties '{"dft_mag_density": 0.15}'
```
You can also use the demo YAML files:
```bash
cd demo
bash run.sh --config configs/generate_base.yaml
bash run.sh --config configs/generate_dft_mag_density.yaml
```
### Training
Submit an eight-DCU training job with the MP-20 cache:
```bash
cd demo
bash run.sh --config configs/train_8dcu.yaml --submit
```
You can also launch training directly from the repository root with Hydra arguments:
```bash
python train.py \
data_module=mp_20 \
data_module.root_dir=./datasets/mp20/data/MP20/cache/mp_20 \
trainer.devices=1 \
data_module.batch_size.train=4
```
### Fine-Tuning
The repository provides a smoke-test configuration for magnetic-density property fine-tuning. By default, it runs only one training batch and one validation batch:
```bash
cd demo
bash run.sh --config configs/finetune_dft_mag_density_smoke.yaml
```
For a full fine-tuning run, copy the YAML and update `adapter.model_path`, `data_module.properties`, the property embedding, batch size, and number of epochs. Remove `trainer.limit_train_batches` and `trainer.limit_val_batches`.
# Official OneScience Resources
| Platform | OneScience Main Repository | Skills Repository |
| --- | --- | --- |
| Gitee | https://gitee.com/onescience-ai/onescience | https://gitee.com/onescience-ai/oneskills |
| GitHub | https://github.com/onescience-ai/OneScience | https://github.com/onescience-ai/oneskills |
---
# Citation and License
- The MatterGen-related code comes from the MatChem examples in the OneScience project and refers to the upstream MatterGen project (https://github.com/microsoft/mattergen). The upstream MatterGen code is released under the [MIT License](https://github.com/microsoft/mattergen/blob/main/LICENSE).
- If you use MatterGen training or generation results in research, please cite the original MatterGen paper, the relevant OneScience projects, and the datasets used.
|