Scalable EquiVariance Enabled Neural Network
Project description
SevenNet
SevenNet (Scalable EquiVariance-Enabled Neural Network) is a graph neural network (GNN)-based interatomic potential package that supports parallel molecular dynamics simulations using LAMMPS
. Its core model is based on NequIP
.
[!NOTE] We will soon release a CUDA-accelerated version of SevenNet, which will significantly increase the speed of our pretrained models on Matbench Discovery.
[!TIP] SevenNet supports NVIDIA's cuEquivariance for acceleration. In our benchmarks, we found that the cuEquivariance improves inference speed by a factor of three for the SevenNet-MF-ompa potential. See Installation for details.
Features
- Pretrained GNN interatomic potential and fine-tuning interface
- Support for the Python Atomic Simulation Environment (ASE) calculator
- GPU-parallelized molecular dynamics with LAMMPS
- CUDA-accelerated D3 (van der Waals) dispersion
- Multi-fidelity training for combining multiple databases with different calculation settings (Usage)
Pretrained models
So far, we have released multiple pretrained SevenNet models. Each model has various hyperparameters and training sets, leading to different levels of accuracy and speed. Please read the descriptions below carefully and choose the model that best suits your purpose. We provide the F1 score, and RMSD for the WBM dataset, along with $\kappa_{\mathrm{SRME}}$ from phononDB and CPS (Combined Performance Score). For details on these metrics and performance comparisons with other pretrained models, please visit Matbench Discovery.
These models can be used as interatomic potentials in LAMMPS and loaded through the ASE calculator using each model’s keywords. Please refer to the ASE calculator section for instructions on loading a model via the ASE calculator.
Additionally, keywords
can be used in other parts of SevenNet, such as sevenn_inference
, sevenn_get_model
, and the checkpoint
section in input.yaml
for fine-tuning.
Acknowledgments: The models trained on MPtrj
were supported by the Neural Processing Research Center program at Samsung Advanced Institute of Technology, part of Samsung Electronics Co., Ltd. The computations for training models were carried out using the Samsung SSC-21 cluster.
SevenNet-MF-ompa (17Mar2025)
Model keywords:
7net-mf-ompa
|SevenNet-mf-ompa
This is our recommended pretrained model
This model leverages multi-fidelity learning to train simultaneously on the MPtrj, sAlex, and OMat24 datasets. This model is the best among our pretrained models and achieves a high ranking on the Matbench Discovery leaderboard. Our evaluations show that it outperforms other models on most tasks, except for the isolated molecule energy task, where it performs slightly worse than SevenNet-l3i5
.
from sevenn.calculator import SevenNetCalculator
# "mpa" refers to the MPtrj + sAlex modal, used for evaluating Matbench Discovery.
calc = SevenNetCalculator('7net-mf-ompa', modal='mpa') # Use modal='omat24' for OMat24-trained modal weights.
[!NOTE] Each modal is expected to produce results that are more consistent with the DFT settings in the training datasets (e.g.,
mpa
, trained on the combined MPtrj and sAlex datasets;omat24
, trained on the OMat24 dataset). For detailed DFT settings, please refer to their papers.
When using the command-line interface of SevenNet, include the --modal mpa
or --modal omat24
option to select the desired modality.
Matbench Discovery
CPS | F1 | $\kappa_{\mathrm{SRME}}$ | RMSD |
---|---|---|---|
0.883 | 0.901 | 0.317 | 0.0115 |
Detailed instructions for multi-fidelity learning
Download link for fully detailed checkpoint
SevenNet-omat (17Mar2025)
Model keywords:
7net-omat
|SevenNet-omat
This model was trained exclusively on the OMat24 dataset. It achieves high performance in $\kappa_{\mathrm{SRME}}$ on Matbench Discovery, but its F1 score is unavailable due to a difference in the POTCAR version. Like SevenNet-MF-ompa
, this model outperforms SevenNet-l3i5
on most tasks, except for the isolated molecule energy.
Download link for fully detailed checkpoint.
Matbench Discovery
- $\kappa_{\mathrm{SRME}}$: 0.221
SevenNet-l3i5 (12Dec2024)
Model keywords:
7net-l3i5
|SevenNet-l3i5
This model increases the maximum spherical harmonic degree ($l_{\mathrm{max}}$) to 3, compared to SevenNet-0
, which has an $l_{\mathrm{max}}$ of 2. While l3i5 offers improved accuracy for various systems, it is approximately four times slower than SevenNet-0
.
Matbench Discovery
CPS | F1 | $\kappa_{\mathrm{SRME}}$ | RMSD |
---|---|---|---|
0.764 | 0.76 | 0.55 | 0.0182 |
SevenNet-0 (11Jul2024)
Model keywords::
7net-0
|SevenNet-0
|7net-0_11Jul2024
|SevenNet-0_11Jul2024
This model is one of our earliest pretrained models. Although we recommend using newer and more accurate models, it can still be useful in certain cases due to its shortest inference time. The model was trained on the MPtrj and is loaded as the default pretrained model in the ASE calculator. For more information, click here.
Matbench Discovery
F1 | $\kappa_{\mathrm{SRME}}$ |
---|---|
0.67 | 0.767 |
You can find our legacy models in pretrained_potentials.
Contents
Installation
Requirements
- Python >= 3.8
- PyTorch >= 2.0.0, PyTorch =< 2.5.2
- [Optional] cuEquivariance >= 0.4.0
For CUDA version, refer to PyTorch's compatibility matrix: https://github.com/pytorch/pytorch/blob/main/RELEASE.md#release-compatibility-matrix
[!IMPORTANT] Please install PyTorch manually based on your hardware before installing SevenNet.
Once PyTorch is successfully installed, please run the following command:
pip install sevenn
pip install git+https://github.com/MDIL-SNU/SevenNet.git # for the latest main branch
For cuEquivariance
pip install sevenn --extra cueq12 # cueq11 for CUDA version 11.*
The cuEquivariance can be enabled using --enable_cueq
when training with sevenn
via command line, and by setting enable_cueq=True
in the SevenNetCalculator
.
Note that you need Python version >= 3.10 to use cuEquivariance.
Usage
ASE calculator
SevenNet provides an ASE interface via the ASE calculator. Models can be loaded using the following Python code:
from sevenn.calculator import SevenNetCalculator
# The 'modal' argument is required if the model is trained with multi-fidelity learning enabled.
calc_mf_ompa = SevenNetCalculator(model='7net-mf-ompa', modal='mpa')
SevenNet also supports CUDA-accelerated D3 calculations.
from sevenn.calculator import SevenNetD3Calculator
calc = SevenNetD3Calculator(model='7net-0', device='cuda')
If you encounter the error CUDA is not installed or nvcc is not available
, please ensure the nvcc
compiler is available. Currently, CPU + D3 is not supported.
Various pretrained SevenNet models can be accessed by setting the model variable to predefined keywords like 7net-mf-ompa
, 7net-omat
, 7net-l3i5
, and 7net-0
.
Additionally, user-trained models can be applied with the ASE calculator. In this case, the model
parameter should be set to the checkpoint path from training.
[!TIP] When 'auto' is passed to the
device
parameter (the default setting), SevenNet utilizes GPU acceleration if available.
Training and inference
SevenNet provides five commands for preprocessing, training, and deployment: sevenn_preset
, sevenn_graph_build
, sevenn
, sevenn_inference
, and sevenn_get_model
.
1. Input generation
With the sevenn_preset
command, the input file setting the training parameters is generated automatically.
sevenn_preset {preset keyword} > input.yaml
Available preset keywords are: base
, fine_tune
, multi_modal
, sevennet-0
, and sevennet-l3i5
.
Check comments in the preset YAML files for explanations. For fine-tuning, be aware that most model hyperparameters cannot be modified unless explicitly indicated.
To reuse a preprocessed training set, you can specify sevenn_data/${dataset_name}.pt
for the load_trainset_path:
in the input.yaml
.
2. Preprocess (optional)
To obtain the preprocessed data, sevenn_data/graph.pt
, sevenn_graph_build
command can be used.
The output files can be used for training (sevenn
) or inference (sevenn_inference
) to skip the graph build stage.
sevenn_graph_build {dataset path} {cutoff radius}
The output sevenn_data/graph.yaml
contains statistics and meta information about the dataset.
These files must be located in the sevenn_data
directory. If you move the dataset, move the entire sevenn_data
directory without changing the contents.
See sevenn_graph_build --help
for more information.
3. Training
Given that input.yaml
and sevenn_data/graph.pt
are prepared, SevenNet can be trained by the following command:
sevenn input.yaml -s
We support multi-GPU training using PyTorch DDP (distributed data parallel) with a single process (or a CPU core) per GPU.
torchrun --standalone --nnodes {number of nodes} --nproc_per_node {number of GPUs} --no_python sevenn input.yaml -d
Please note that batch_size
in input.yaml
refers to the per-GPU batch size.
4. Inference
Using the checkpoint after training, the properties such as energy, force, and stress can be inferred directly.
sevenn_inference checkpoint_best.pth path_to_my_structures/*
This will create the sevenn_infer_result
directory, where CSV files contain predicted energy, force, stress, and their references (if available).
See sevenn_inference --help
for more information.
5. Deployment
The checkpoint can be deployed as LAMMPS potentials. The argument is either the path to the checkpoint or the name of a pretrained potential.
sevenn_get_model 7net-0 # For pre-trained models
sevenn_get_model {checkpoint path} # For user-trained models
This will create deployed_serial.pt
, which can be used as a LAMMPS potential with the e3gnn
pair_style in LAMMPS.
The potential for parallel MD simulation can be obtained similarly.
sevenn_get_model 7net-0 -p
sevenn_get_model {checkpoint path} -p
This will create a directory with several deployed_parallel_*.pt
files. The directory path itself is an argument for the LAMMPS script. Please do not modify or remove files in the directory.
These models can be used as LAMMPS potentials to run parallel MD simulations with a GNN potential across multiple GPUs.
Notebook tutorials
If you want to learn how to use the sevenn
Python library instead of the CLI command, please check out the notebook tutorials below.
Notebooks | Google Colab | Descriptions |
---|---|---|
From scratch | We can learn how to train the SevenNet from scratch, predict energy, forces, and stress using the trained model, perform structure relaxation, and draw EOS curves. | |
Fine-tuning | We can learn how to fine-tune the SevenNet and compare the results of the pretrained model with the fine-tuned model. |
Sometimes, the Colab environment may crash due to memory issues. If you have sufficient GPU resources in your local environment, we recommend downloading the tutorials from GitHub and running them on your machine.
git clone https://github.com/MDIL-SNU/sevennet_tutorial.git
MD simulation with LAMMPS
Installation
Requirements
- PyTorch (it is recommended to use the same version as used during training)
- LAMMPS version of
stable_2Aug2023_update3
- MKL library
CUDA-aware OpenMPI
for parallel MD (optional)
If your cluster supports the Intel MKL module (often included with Intel OneAPI, Intel Compiler, and other Intel-related modules), load that module.
CUDA-aware OpenMPI is optional but recommended for parallel MD. If it is not available, GPUs will communicate via the CPU when running in parallel mode. It is still faster than using only one GPU, but its efficiency is lower.
[!IMPORTANT] CUDA-aware OpenMPI does not support NVIDIA gaming GPUs. Since the software is closely tied to hardware specifications, please consult your server administrator if CUDA-aware OpenMPI is unavailable.
1. Build LAMMPS with cmake.
Ensure the LAMMPS version is stable_2Aug2023_update3
. You can easily switch the version using Git. After switching the version, run sevenn_patch_lammps
with the LAMMPS directory path as an argument.
git clone https://github.com/lammps/lammps.git lammps_sevenn --branch stable_2Aug2023_update3 --depth=1
sevenn_patch_lammps ./lammps_sevenn {--d3}
You can refer to sevenn/pair_e3gnn/patch_lammps.sh
for details of the patch process.
[!TIP] Add
--d3
option to install GPU-accelerated Grimme's D3 method pair style. For its usage and details, click here.
cd ./lammps_sevenn
mkdir build
cd build
cmake ../cmake -DCMAKE_PREFIX_PATH=`python -c 'import torch;print(torch.utils.cmake_prefix_path)'`
make -j4
If the error MKL_INCLUDE_DIR NOT-FOUND
occurs, please check the environment variable or read the Possible solutions
section below.
If compilation completes without any errors, please skip this.
Possible solutions
2. Install mkl-include via conda
conda install -c intel mkl-include
conda install mkl-include # if the above failed
3. Append DMKL_INCLUDE_DIR
to the cmake command and repeat step 1
cmake ../cmake -DCMAKE_PREFIX_PATH=`python -c 'import torch;print(torch.utils.cmake_prefix_path)'` -DMKL_INCLUDE_DIR=$CONDA_PREFIX/include
If the undefined reference to XXX
error with libtorch_cpu.so
occurs, check the $LD_LIBRARY_PATH
.
If PyTorch is installed using Conda, libmkl_*.so
files can be found in $CONDA_PREFIX/lib
.
Ensure that $LD_LIBRARY_PATH
includes $CONDA_PREFIX/lib
.
For other error cases, solution can be found in the pair-nequip
repository, as we share the same architecture.
If the compilation is successful, the executable lmp
can be found at {path_to_lammps_dir}/build
.
To use this binary easily, create a soft link to your bin directory, which should be included in your $PATH
.
ln -s {absolute_path_to_lammps_directory}/build/lmp $HOME/.local/bin/lmp
This allows you to run the binary using lmp -in my_lammps_script.lmp
.
Single-GPU MD
For single-GPU MD simulations, the e3gnn
pair_style should be used. A minimal input script is provided below:
units metal
atom_style atomic
pair_style e3gnn
pair_coeff * * {path to serial model} {space separated chemical species}
Multi-GPU MD
For multi-GPU MD simulations, the e3gnn/parallel
pair_style should be used. A minimal input script is provided below:
units metal
atom_style atomic
pair_style e3gnn/parallel
pair_coeff * * {number of message-passing layers} {directory of parallel model} {space separated chemical species}
For example,
pair_style e3gnn/parallel
pair_coeff * * 4 ./deployed_parallel Hf O
The number of message-passing layers corresponds to the number of *.pt
files in the ./deployed_parallel
directory.
To deploy LAMMPS models from checkpoints for both serial and parallel execution, use sevenn_get_model
.
It is expected that there is one GPU per MPI process. If the number of available GPUs is less than the number of MPI processes, the simulation may run inefficiently.
[!CAUTION] Currently, the parallel version encounters an error when one of the subdomain cells contains no atoms. This issue can be addressed using the
processors
command and, more effectively, thefix balance
command in LAMMPS. A patch for this issue will be released in a future update.
Application of SevenNet-0
If you are interested in practical applications of SevenNet, you may want to check this paper (data available on Zenodo). This study utilized SevenNet-0 for simulating liquid electrolytes.
The fine-tuning procedure and associated input files are accessible through the links above, specifically within the Fine-tuning.tar.xz
archive on Zenodo.
The YAML file used for fine-tuning can be obtained using the following command:
sevenn_preset fine_tune_le > input.yaml
Citation
If you use this code, please cite our paper:
@article{park_scalable_2024,
title = {Scalable Parallel Algorithm for Graph Neural Network Interatomic Potentials in Molecular Dynamics Simulations},
volume = {20},
doi = {10.1021/acs.jctc.4c00190},
number = {11},
journal = {J. Chem. Theory Comput.},
author = {Park, Yutack and Kim, Jaesun and Hwang, Seungwoo and Han, Seungwu},
year = {2024},
pages = {4857--4868},
}
If you utilize the multi-fidelity feature of this code or the pretrained model SevenNet-MF-ompa, please cite the following paper:
@article{kim_sevennet_mf_2024,
title = {Data-Efficient Multifidelity Training for High-Fidelity Machine Learning Interatomic Potentials},
volume = {147},
doi = {10.1021/jacs.4c14455},
number = {1},
journal = {J. Am. Chem. Soc.},
author = {Kim, Jaesun and Kim, Jisu and Kim, Jaehoon and Lee, Jiho and Park, Yutack and Kang, Youngho and Han, Seungwu},
year = {2024},
pages = {1042--1054},
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sevenn-0.11.2.post1.tar.gz
.
File metadata
- Download URL: sevenn-0.11.2.post1.tar.gz
- Upload date:
- Size: 42.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
6d5c21e9c1afe6b4b9b0af32ba66d5e048e1a6778906df0abcfc30501aeb8306
|
|
MD5 |
ea63b57e170b076975b4efd5258a7341
|
|
BLAKE2b-256 |
fc247b897c4e6022dda7416cd3d3d6805a3bc2d79dec193521f00f6b2761097c
|
File details
Details for the file sevenn-0.11.2.post1-py3-none-any.whl
.
File metadata
- Download URL: sevenn-0.11.2.post1-py3-none-any.whl
- Upload date:
- Size: 42.7 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
b30ac41252db885b0d73500856caa6bd627ff5aed665df19bd76053145b25624
|
|
MD5 |
6b402793642c21dc232f7de20109f9c8
|
|
BLAKE2b-256 |
8f5a3e6c9744686c0ea48bcfc4dee4d244932cea92ca85aadf012104531b35c2
|