matsciml
Open MatSci ML Toolkit is a framework for prototyping and scaling out deep learning models for materials discovery supporting widely used materials science datasets, and built on top of PyTorch Lightning, the Deep Graph Library, and PyTorch Geometric.
Science Score: 77.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 3 DOI reference(s) in README -
✓Academic publication links
Links to: zenodo.org -
✓Committers with academic emails
1 of 12 committers (8.3%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (15.4%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
Open MatSci ML Toolkit is a framework for prototyping and scaling out deep learning models for materials discovery supporting widely used materials science datasets, and built on top of PyTorch Lightning, the Deep Graph Library, and PyTorch Geometric.
Basic Info
Statistics
- Stars: 175
- Watchers: 6
- Forks: 29
- Open Issues: 31
- Releases: 2
Topics
Metadata Files
README.md
Open MatSci ML Toolkit : A Broad, Multi-Task Benchmark for Solid-State Materials Modeling
This is the implementation of the MatSci ML benchmark, which includes ~1.5 million ground-state materials collected from various datasets, as well as integration of the OpenCatalyst dataset supporting diverse data format (point cloud, DGL graphs, PyG graphs), learning methods (single task, multi-task, multi-data) and deep learning models. Primary project contributors include: Santiago Miret (Intel Labs), Kin Long Kelvin Lee (Intel AXG), Carmelo Gonzales (Intel Labs), Mikhail Galkin (Intel Labs), Marcel Nassar (Intel Labs), Matthew Spellings (Vector Institute).
News
- [2024/08/23] Readthedocs is now online!
- [2023/09/27] Release of pre-packaged lmdb-based datasets from v1.0.0 via Zenodo.
- [2023/08/31] Initial release of the MatSci ML Benchmark with integration of ~1.5 million ground state materials.
- [2023/07/31] The Open MatSci ML Toolkit : A Flexible Framework for Deep Learning on the OpenCatalyst Dataset paper is accepted into TMLR. See previous version for code related to the benchmark.
Introduction
The MatSci ML Benchmark contains diverse sets of tasks (energy prediction, force prediction, property prediction) across a broad range of datasets (OpenCatalyst Project [1], Materials Project [2], LiPS [3], OQMD [4], NOMAD [5], Carolina Materials Database [6]). Most of the data is related to energy prediction task, which is the most common property tracked for most materials systems in the literature. The codebase support single-task learning, as well as multi-task (training one model for multiple tasks within a dataset) and multi-date (training a model across multiple datsets with a common property). Additionally, we provide a generative materials pipeline that applies diffusion models (CDVAE [7]) to generate new unit cells.
The package follows the original design principles of the Open MatSci ML Toolkit, including: - Ease of use for new ML researchers and practitioners that want get started on interacting with the OpenCatalyst dataset. - Scalable computation of experiments leveraging PyTorch Lightning across different computation capabilities (laptop, server, cluster) and hardware platforms (CPU, GPU, XPU) without sacrificing performance in the compute and modeling. - Integrating support for DGL and PyTorch Geometric for rapid GNN development.
The examples outlined in the next section how to get started with Open MatSci ML Toolkit using simple Python scripts, Jupyter notebooks, or the PyTorch Lightning CLI for a simple training on a portable subset of the original dataset (dev-set) that can be run on a laptop. Subsequently, we scale our example python script to large compute systems, including distributed data parallel training (multiple GPU on a single node) and multi-node training (multiple GPUs across multiple nodes) in a computing cluster. Leveraging both PyTorch Lightning and DGL capabilities, we can enable the compute and experiment scaling with minimal additional complexity.
Installation
Docker: We provide a Dockerfile inside thedockerthat can be run to install a container using standard docker commands.mamba: We have included amambaspecification that provides a complete out-of-the-box installation. Runmamba env create -n matsciml --file conda.yml, and will install all dependencies andmatscimlas an editable install.pip: In this case, we assume you are bringing your own virtual environment. Depending on what hardware platform you have, you can copy-paste the following commands; because the absolute mess that is modern Python packaging, these commands include the URLs for binary distributions of PyG and DGL graph backends.
For CPU only (good for local laptop development):
console
pip install -f https://data.pyg.org/whl/torch-2.4.0+cpu.html -f https://data.dgl.ai/wheels/torch-2.4/repo.html -e './[all]'
For XPU usage, you will need to install PyTorch separately first, followed by matsciml; note that the PyTorch version is lower
as 2.3.1 is the latest XPU binary distributed.
console
pip install torch==2.3.1+cxx11.abi torchvision==0.18.1+cxx11.abi torchaudio==2.3.1+cxx11.abi intel-extension-for-pytorch==2.3.110+xpu oneccl_bind_pt==2.3.100+xpu --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/
pip install -f https://data.pyg.org/whl/torch-2.3.0+cpu.html -f https://data.dgl.ai/wheels/torch-2.3/repo.html -e './[all]'
For CUDA usage, substitute the index links with your particular toolkit version (e.g. 12.1 below):
console
pip install -f https://data.dgl.ai/wheels/torch-2.4/cu121/repo.html -f https://data.pyg.org/whl/torch-2.4.0+cu121.html -e './[all]'
Additionally, for a development install, one can specify the extra packages like black and pytest with pip install './[dev]'. These can be
added to the commit workflow by running pre-commit install to generate git hooks.
Intel XPU capabilities
[!NOTE] As of PyTorch 2.4+, XPU support has been upstreamed to PyTorch and starting from
torch>=2.5.0onwards, should be available as apipinstall. We will update the instructions accordingly when it does. We recommend consulting the PyTorch documentation for updates and instructions on how to get started with XPU use. In the meantime, please consult this page to see how to set up PyTorch on XPUs.
The module matsciml.lightning.xpu implements interfaces for Intel XPU to Lightning abstractions, including
the XPUAccelerator and two strategies for deployment (single XPU/tile and distributed data parallel).
Because we use PyTorch Lightning, there aren't many marked differences in running on Intel XPU, or GPUs
from other vendors. The abstractions we mentioned are registered in the various Lightning registries,
and should be accessible simply through pl.Trainer arguments, e.g.:
python
trainer = pl.Trainer(accelerator='xpu')
The one major difference is for distributed data parallelism: Intel XPUs use the oneCCL communication
backend, which replaces nccl, gloo, or other backends typically passed to torch.distributed.
Please see examples/devices for single XPU/tile and DDP use cases.
NOTE: Currently there is a hard-coded torch.cuda.stream context in PyTorch Lightning's DDPStrategy.
This issue has been created to see if the maintainers would be happy to patch
it so that the cuda.Stream context is only used if a CUDA device is being used. If you encounter
a RuntimeError: Tried to instantiate dummy base class Stream, please just set ctx = nullcontext()
in the line of code that raises the exception.
Examples
The examples folder contains simple, unit scripts that demonstrate how to use the pipeline in specific ways:
Get started with different datasets with "devsets"
```bash # Materials project python examples/datasets/materials_project/single_task_devset.py # Carolina materials database python examples/datasets/carolina_db/single_task_devset.py # NOMAD python examples/datasets/nomad/single_task_devset.py # OQMD python examples/datasets/oqmd/single_task_devset.py ```Representation learning with symmetry pretraining
```bash # uses the devset for synthetic point group point clouds python examples/tasks/symmetry/single_symmetry_example.py ```Example notebook-based development and testing
```bash jupyter notebook examples/devel-example.ipynb ```For more advanced use cases:
Checkout materials generation with CDVAE
CDVAE [7] is a latent diffusion model that trains a VAE on the reconstruction objective, adds Gaussian noise to the latent variable, and learns to predict the noise. The noised and generated features inlcude lattice parameters, atoms composition, and atom coordinates. The generation process is based on the annealed Langevin dynamics. CDVAE is implemented in the `GenerationTask` and we provide a custom data split from the Materials Project bounded by 25 atoms per structure. The process is split into 3 parts with 3 respective scripts found in `examples/model_demos/cdvae/`. 1. Training CDVAE on the reconstruction and denoising objectives: `cdvae.py` 2. Sampling the structures (from scratch or reconstruct the test set): `cdvae_inference.py` 3. Evaluating the sampled structures: `cdvae_metrics.py` The sampling procedure takes some time (about 5-8 hours for 10000 structures depending on the hardware) due to the Langevin dynamics. The default hyperparameters of CDVAE components correspond to that from the original paper and can be found in `cdvae_configs.py`. ```bash # training python examples/model_demos/cdvae/cdvae.py --data_pathMultiple tasks trained using the same dataset
```bash # this script requires modification as you'll need to download the materials # project dataset, and point L24 to the folder where it was saved python examples/tasks/multitask/single_data_multitask_example.py ``` Utilizes Materials Project data to train property regression and material classification jointlyMultiple tasks trained using multiple datasets
```bash python examples/tasks/multitask/three_datasets.py ``` Train regression tasks against IS2RE, S2EF, and LiPS datasets jointlyData Pipeline
In the scripts folder you will find two scripts needed to download and preprocess datasets: the download_datasets.py can be used to obtain Carolina DB, Materials Project, NOMAD, and OQMD datasets, while the download_ocp_data.py preserves the original Open Catalyst script.
In the current release, we have implemented interfaces to a number of large scale materials science datasets. Under the hood, the data structures pulled from each dataset have been homogenized, and the only real interaction layer for users is through the MatSciMLDataModule, a subclass of LightningDataModule.
```python from matsciml.lightning.data_utils import MatSciMLDataModule
no configuration needed, although one can specify the batch size and number of workers
devsetmodule = MatSciMLDataModule.fromdevset(dataset="MaterialsProjectDataset") ```
This will let you springboard into development without needing to worry about how to wrangle with the datasets; just grab a batch and go! With the exception of Open Catalyst, datasets will typically return point cloud representations; we provide a flexible transform interface to interconvert between representations and frameworks:
From point clouds to DGL graphs
```python from matsciml.datasets.transforms import PointCloudToGraphTransform # make the materials project dataset emit DGL graphs, based on a atom-atom distance cutoff of 10 devset = MatSciMLDataModule.from_devset( dataset="MaterialsProjectDataset", dset_kwargs={"transforms": [PointCloudToGraphTransform(backend="dgl", cutoff_dist=10.)]} ) ```But I want to use PyG?
```python from matsciml.datasets.transforms import PointCloudToGraphTransform # change the backend argument to obtain PyG graphs devset = MatSciMLDataModule.from_devset( dataset="MaterialsProjectDataset", dset_kwargs={"transforms": [PointCloudToGraphTransform(backend="pyg", cutoff_dist=10.)]} ) ```What else can I configure with `MatSciMLDataModule`?
Datasets beyond devsets can be configured through class arguments: ```python devset = MatSciMLDataModule( dataset="MaterialsProjectDataset", train_path="/path/to/training/lmdb/folder", batch_size=64, num_workers=4, # configure data loader instances dset_kwargs={"transforms": [PointCloudToGraphTransform(backend="pyg", cutoff_dist=10.)]}, val_split="/path/to/val/lmdb/folder" ) ``` In particular, `val_split` and `test_split` can point to their LMDB folders, _or_ just a float between [0,1] to do quick, uniform splits. The rest, including distributed sampling, will be taken care of for you under the hood.How do I compose multiple datasets?
Given the amount of configuration involved, composing multiple datasets takes a little more work but we have tried to make it as seamless as possible. The main difference from the single dataset case is replacing `MatSciMLDataModule` with `MultiDataModule` from `matsciml.lightning.data_utils`, configuring each dataset manually, and passing them collectively into the data module: ```python from matsciml.datasets import MaterialsProjectDataset, OQMDDataset, MultiDataset from matsciml.lightning.data_utils import MultiDataModule # configure training only here, but same logic extends to validation/test splits train_dset = MultiDataset( [ MaterialsProjectDataset("/path/to/train/materialsproject"), OQMDDataset("/path/to/train/oqmd") ] ) # this configures the actual data module passed into Lightning datamodule = MultiDataModule( batch_size=32, num_workers=4, train_dataset=train_dset ) ``` While it does require a bit of extra work, this was to ensure flexibility in how you can compose datasets. We welcome feedback on the user experience! 😃Task abstraction
In Open MatSci ML Toolkit, tasks effective form learning objectives: at a high level, a task takes an encoding model/backbone that ingests a structure to predict one or several properties, or classify a material. In the single task case, there may be multiple targets and the neural network architecture may be fluid, but there is only one optimizer. Under this definition, multi-task learning comprises multiple tasks and optimizers operating jointly through a single embedding.
References
- [1] Chanussot, L., Das, A., Goyal, S., Lavril, T., Shuaibi, M., Riviere, M., Tran, K., Heras-Domingo, J., Ho, C., Hu, W. and Palizhati, A., 2021. Open catalyst 2020 (OC20) dataset and community challenges. Acs Catalysis, 11(10), pp.6059-6072.
- [2] Jain, A., Ong, S.P., Hautier, G., Chen, W., Richards, W.D., Dacek, S., Cholia, S., Gunter, D., Skinner, D., Ceder, G. and Persson, K.A., 2013. Commentary: The Materials Project: A materials genome approach to accelerating materials innovation. APL materials, 1(1).
- [3] Batzner, S., Musaelian, A., Sun, L., Geiger, M., Mailoa, J.P., Kornbluth, M., Molinari, N., Smidt, T.E. and Kozinsky, B., 2022. E (3)-equivariant graph neural networks for data-efficient and accurate interatomic potentials. Nature communications, 13(1), p.2453.
- [4] Kirklin, S., Saal, J.E., Meredig, B., Thompson, A., Doak, J.W., Aykol, M., Rühl, S. and Wolverton, C., 2015. The Open Quantum Materials Database (OQMD): assessing the accuracy of DFT formation energies. npj Computational Materials, 1(1), pp.1-15.
- [5] Draxl, C. and Scheffler, M., 2019. The NOMAD laboratory: from data sharing to artificial intelligence. Journal of Physics: Materials, 2(3), p.036001.
- [6] Zhao, Y., Al‐Fahdi, M., Hu, M., Siriwardane, E.M., Song, Y., Nasiri, A. and Hu, J., 2021. High‐throughput discovery of novel cubic crystal materials using deep generative neural networks. Advanced Science, 8(20), p.2100566.
- [7] Xie, T., Fu, X., Ganea, O.E., Barzilay, R. and Jaakkola, T.S., 2021, October. Crystal Diffusion Variational Autoencoder for Periodic Material Generation. In International Conference on Learning Representations.
Contributing
Please refer to the developers guide for how to contribute the the Open MatSciML Toolkit.
Citations
If you use Open MatSci ML Toolkit in your technical work or publication, we would appreciate it if you cite the Open MatSci ML Toolkit paper in TMLR:
Miret, S.; Lee, K. L. K.; Gonzales, C.; Nassar, M.; Spellings, M. The Open MatSci ML Toolkit: A Flexible Framework for Machine Learning in Materials Science. Transactions on Machine Learning Research, 2023.
```bibtex @article{openmatscimltoolkit, title = {The Open {{MatSci ML}} Toolkit: {{A}} Flexible Framework for Machine Learning in Materials Science}, author = {Miret, Santiago and Lee, Kin Long Kelvin and Gonzales, Carmelo and Nassar, Marcel and Spellings, Matthew}, year = {2023}, journal = {Transactions on Machine Learning Research}, issn = {2835-8856} } ```If you use v1.0.0, please cite our paper:
Lee, K. L. K., Gonzales, C., Nassar, M., Spellings, M., Galkin, M., & Miret, S. (2023). MatSciML: A Broad, Multi-Task Benchmark for Solid-State Materials Modeling. arXiv preprint arXiv:2309.05934.
```bibtex @article{lee2023matsciml, title={MatSciML: A Broad, Multi-Task Benchmark for Solid-State Materials Modeling}, author={Lee, Kin Long Kelvin and Gonzales, Carmelo and Nassar, Marcel and Spellings, Matthew and Galkin, Mikhail and Miret, Santiago}, journal={arXiv preprint arXiv:2309.05934}, year={2023} } ```Please cite datasets used in your work as well. You can find additional descriptions and details regarding each dataset here.
Owner
- Name: Intel Labs
- Login: IntelLabs
- Kind: organization
- Location: Around the globe
- Website: http://www.intel.com/intellabs/
- Repositories: 67
- Profile: https://github.com/IntelLabs
Citation (CITATION.cff)
cff-version: 1.2.0
message: "If you use Open MatSci ML Toolkit in your technical work or publication, we would appreciate it if you cite the Open MatSci ML Toolkit library"
authors:
- family-names: Miret*
given-names: Santiago
orcid: https://orcid.org/0000-0002-5121-3853
affiliation: Intel Labs
- family-names: Lee*
given-names: Kin Long Kelvin
orcid: https://orcid.org/0000-0002-1903-9242
affiliation: Intel SCALE
- family-names: Gonzales
given-names: Carmelo
affiliation: Intel Labs
orcid: https://orcid.org/0000-0002-5048-1901
- family-names: Nassar
given-names: Marcel
affiliation: Intel Labs
orcid: https://orcid.org/0000-0002-7628-8819
- family-names: Sadowski
given-names: Krzysztof
affiliation: IP Rally Technologies
title: "Open MatSci ML Toolkit: A Flexible Framework for Deep Learning on the OpenCatalyst Dataset"
type: software
version: 0.1.0
url: https://github.com/IntelLabs/matsciml
GitHub Events
Total
- Issues event: 8
- Watch event: 34
- Delete event: 16
- Issue comment event: 26
- Push event: 20
- Pull request review comment event: 17
- Pull request review event: 39
- Pull request event: 66
- Fork event: 8
- Create event: 14
Last Year
- Issues event: 8
- Watch event: 34
- Delete event: 16
- Issue comment event: 26
- Push event: 20
- Pull request review comment event: 17
- Pull request review event: 39
- Pull request event: 66
- Fork event: 8
- Create event: 14
Committers
Last synced: 9 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Lee, Kin Long Kelvin | k****e@i****m | 2,090 |
| Gonzales, Carmelo | c****s@i****m | 324 |
| Vaibhav525 | v****5@g****m | 29 |
| dependabot[bot] | 4****] | 25 |
| JonathanSchmidt1 | s****8@g****m | 25 |
| Galkin, Mikhail | m****n@i****m | 24 |
| santiago.miret | s****t@a****m | 6 |
| smiret-intel | s****t@i****m | 5 |
| lory-w | x****g@i****m | 4 |
| Eric Fuemmeler | e****l@E****l | 4 |
| Michael Beale | m****e@i****m | 3 |
| santiago.miret | s****t@a****m | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 46
- Total pull requests: 177
- Average time to close issues: 2 months
- Average time to close pull requests: 14 days
- Total issue authors: 6
- Total pull request authors: 9
- Average comments per issue: 0.65
- Average comments per pull request: 0.81
- Merged pull requests: 103
- Bot issues: 0
- Bot pull requests: 74
Past Year
- Issues: 9
- Pull requests: 53
- Average time to close issues: 4 days
- Average time to close pull requests: 10 days
- Issue authors: 1
- Pull request authors: 3
- Average comments per issue: 0.0
- Average comments per pull request: 0.6
- Merged pull requests: 29
- Bot issues: 0
- Bot pull requests: 24
Top Authors
Issue Authors
- laserkelvin (50)
- melo-gonzo (7)
- JonathanSchmidt1 (6)
- dependabot[bot] (2)
- bmuaz (1)
- chaitjo (1)
- lory-w (1)
Pull Request Authors
- dependabot[bot] (146)
- laserkelvin (127)
- melo-gonzo (77)
- JonathanSchmidt1 (4)
- lory-w (4)
- Vaibhav525 (3)
- michaelbeale-IL (2)
- smiret-intel (1)
- EFuem (1)
Top Labels
Issue Labels
Pull Request Labels
Dependencies
- nvidia/cuda $CUDA_VERSION build
- ase >=3.22.1
- dgl ==0.9.1
- dgllife ==0.3.2
- e3nn ==0.5.1
- einops ==0.7.0
- emmet-core ==0.64.0
- geometric-algebra-attention >=0.3.0
- jsonargparse [signatures]>=4.13.1
- lmdb ==1.3.0
- matgl ==0.8.5
- matplotlib *
- mendeleev ==0.14.0
- mp_api ==0.33.3
- munch ==2.5.0
- numba >=0.55.0
- numpy >=1.21.0
- psutil *
- pydantic ==1.10.12
- pymatgen ==2023.7.20
- pytorch_lightning ==1.8.6
- rdkit ==2023.3.1
- schema >=0.7.5
- sympy >=1.10.1