• Stars
    star
    596
  • Rank 74,556 (Top 2 %)
  • Language
    Python
  • License
    MIT License
  • Created over 3 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

NequIP is a code for building E(3)-equivariant interatomic potentials

NequIP

NequIP is an open-source code for building E(3)-equivariant interatomic potentials.

Documentation Status

nequip

PLEASE NOTE: the NequIP code is under active development and is still in beta versions 0.x.x. In general changes to the patch version (the third number) indicate backward compatible beta releases, but please be aware that file formats and APIs may change. Bug reports are also welcomed in the GitHub issues!

Installation

NequIP requires:

  • Python >= 3.7
  • PyTorch >= 1.8, !=1.9, <=1.11.*. PyTorch can be installed following the instructions from their documentation. Note that neither torchvision nor torchaudio, included in the default install command, are needed for NequIP.

To install:

  • We use Weights&Biases to keep track of experiments. This is not a strict requirement — you can use our package without it — but it may make your life easier. If you want to use it, create an account here and install the Python package:

    pip install wandb
    
  • Install NequIP

    NequIP can be installed from PyPI:

    pip install nequip
    

    or directly from source:

    git clone https://github.com/mir-group/nequip.git
    cd nequip
    pip install . 
    

Installation Issues

The easiest way to check if your installation is working is to train a toy model:

$ nequip-train configs/minimal.yaml

If you suspect something is wrong, encounter errors, or just want to confirm that everything is in working order, you can also run the unit tests:

pip install pytest
pytest tests/unit/

To run the full tests, including a set of longer/more intensive integration tests, run:

pytest tests/

If a GPU is present, the unit tests will use it.

Tutorial

The best way to learn how to use NequIP is through the Colab Tutorial. This will run entirely on Google's cloud virtual machine; you do not need to install or run anything locally.

Usage

! PLEASE NOTE: the first few calls to a NequIP model can be painfully slow. This is expected behaviour as the profile-guided optimization of TorchScript models takes a number of calls to warm up before optimizing the model. (The nequip-benchmark script accounts for this.)

Basic network training

To train a network, you run nequip-train with a YAML config file that describes your data set, model hyperparameters, and training options.

$ nequip-train configs/example.yaml

A number of example configuration files are provided:

  • configs/minimal.yaml: A minimal example of training a toy model on force data.
  • configs/minimal_eng.yaml: The same, but for a toy model that predicts and trains on only energy labels.
  • configs/example.yaml: Training a more realistic model on forces and energies. Start here for real models!
  • configs/full.yaml: A complete configuration file containing all available options along with documenting comments. This file is for reference, example.yaml is the right starting point for a project.

Training runs can also be restarted by running the same nequip-train command if the append: True option is specified in the original YAML. (Otherwise, a new training run with a different name can be started from the loaded state of the previous run.)

All nequip-* commands accept the --help option to show their call signatures and options.

Evaluating trained models (and their error)

The nequip-evaluate command can be used to evaluate a trained model on a specified dataset, optionally computing error metrics or writing the results to an XYZ file for further processing.

The simplest command is:

$ nequip-evaluate --train-dir /path/to/training/session/

which will evaluate the original training error metrics over any part of the original dataset not used in the training or validation sets.

For more details on this command, please run nequip-evaluate --help.

Deploying models

The nequip-deploy command is used to deploy the result of a training session into a model that can be stored and used for inference. It compiles a NequIP model trained in Python to TorchScript. The result is an optimized model file that has no dependency on the nequip Python library, or even on Python itself:

nequip-deploy build --train-dir path/to/training/session/ where/to/put/deployed_model.pth

For more details on this command, please run nequip-deploy --help.

Using models in Python

An ASE calculator is also provided in nequip.dynamics.

LAMMPS Integration

NequIP is integrated with the popular Molecular Dynamics code LAMMPS which allows for MD simulations over large time- and length-scales and gives users access to the full suite of LAMMPS features.

The interface is implemented as pair_style nequip. Using it requires two simple steps:

  1. Deploy a trained NequIP model, as discussed above.
nequip-deploy build path/to/training/session/ path/to/deployed.pth

The result is an optimized model file that has no Python dependency and can be used by standalone C++ programs such as LAMMPS.

  1. Change the LAMMPS input file to the nequip pair_style and point it to the deployed NequIP model:
pair_style	nequip
pair_coeff	* * deployed.pth <NequIP type for LAMMPS type 1> <NequIP type for LAMMPS type 2> ...

For installation instructions, please see the pair_nequip repository.

References & citing

The theory behind NequIP is described in our preprint (1). NequIP's backend builds on e3nn, a general framework for building E(3)-equivariant neural networks (2). If you use this repository in your work, please consider citing NequIP (1) and e3nn (3):

  1. https://www.nature.com/articles/s41467-022-29939-5
  2. https://e3nn.org
  3. https://doi.org/10.5281/zenodo.3724963

Authors

NequIP is being developed by:

  • Simon Batzner
  • Albert Musaelian
  • Lixin Sun
  • Anders Johansson
  • Mario Geiger
  • Tess Smidt

under the guidance of Boris Kozinsky at Harvard.

Contact, questions, and contributing

If you have questions, please don't hesitate to reach out at batzner[at]g[dot]harvard[dot]edu.

If you find a bug or have a proposal for a feature, please post it in the Issues. If you have a question, topic, or issue that isn't obviously one of those, try our GitHub Discussions.

If you want to contribute to the code, please read CONTRIBUTING.md.

More Repositories

1

allegro

Allegro is an open-source code for building highly scalable and accurate equivariant deep learning interatomic potentials
Python
301
star
2

flare

An open-source Python package for creating fast and accurate interatomic potentials.
Python
286
star
3

phoebe

A high-performance framework for solving phonon and electron Boltzmann equations
C++
81
star
4

pair_nequip

C++
41
star
5

flare_pp

A many-body extension of the FLARE code.
C++
35
star
6

pair_allegro

LAMMPS pair style for Allegro deep learning interatomic potentials with parallelization support
C++
34
star
7

EPA

Electron-phonon averaged approximation
Roff
11
star
8

CiderPress2022

Tools for training and evaluating CIDER functionals for use in Density Functional Theory calculations
Python
9
star
9

nequip-input-files

Input files for Batzner, S., Musaelian, A., Sun, L., Geiger, M., Mailoa, J. P., Kornbluth, M., ... & Kozinsky, B. (2021). E(3)-equivariant graph neural networks for data-efficient and accurate interatomic potentials. arXiv preprint arXiv:2101.03164.
9
star
10

BRAVE

Bloch Representation Analysis and Visualization Environment
Python
7
star
11

nequip-example-extension

Example of how to implement an extension package to the `nequip` framework with custom loss terms, model components, etc.
Python
5
star
12

CiderPressLite

"alpha" release of 2023 CIDER functionals, with interfaces to PySCF and GPAW
Python
4
star
13

distmatrix

Simple C++ library for distributed matrices
C++
4
star
14

surface-restructuring

Automated surface restructuring event characterization
Jupyter Notebook
3
star
15

MLmtCV-PLUMED-Plugin

C++
2
star
16

pytorch_runstats

Running/online statistics for PyTorch
Python
2
star
17

md

Python
1
star
18

NDSimulator

An open-source python code for simple N-dimensional molecular dynamics and enhanced samplings
Python
1
star
19

surfator

"Atomic democracy" for site analysis of surfaces and bulks with known lattice structure(s).
Python
1
star