Skip to main content

DeePMD-kit plugin for graph neural network models.

Project description

DeePMD-kit plugin for various graph neural network models

DOI:10.1021/acs.jcim.4c02441 Citations conda install PyPI - Version

deepmd-gnn is a DeePMD-kit plugin for various graph neural network (GNN) models, which connects DeePMD-kit and atomistic GNN packages by enabling GNN models in DeePMD-kit.

Supported packages and models include:

After installing the plugin, you can train the GNN models using DeePMD-kit, run active learning cycles for the GNN models using DP-GEN, perform simulations with the MACE model using molecular dynamic packages supported by DeePMD-kit, such as LAMMPS and AMBER. You can follow DeePMD-kit documentation to train the GNN models using its PyTorch backend, after using the specific model parameters.

Credits

If you use this software, please cite the following paper:

  • Jinzhe Zeng, Timothy J. Giese, Duo Zhang, Han Wang, Darrin M. York, DeePMD-GNN: A DeePMD-kit Plugin for External Graph Neural Network Potentials, J. Chem. Inf. Model., 2025, 65, 7, 3154-3160, DOI: 10.1021/acs.jcim.4c02441. Citations

Installation

Install via conda

If you are in a conda environment where DeePMD-kit is already installed from the conda-forge channel, you can use conda to install the DeePMD-GNN plugin:

conda install deepmd-gnn -c conda-forge

Build from source

First, clone this repository:

git clone https://gitlab.com/RutgersLBSR/deepmd-gnn
cd deepmd-gnn

Python interface plugin

Python 3.9 or above is required. A C++ compiler that supports C++ 14 (for PyTorch 2.0) or C++ 17 (for PyTorch 2.1 or above) is required.

Assume you have installed DeePMD-kit (v3.0.0b2 or above) and PyTorch in an environment, then execute

# expose PyTorch CMake modules
export CMAKE_PREFIX_PATH=$(python -c "import torch;print(torch.utils.cmake_prefix_path)")

pip install .

C++ interface plugin

DeePMD-kit version should be v3.0.0b4 or later.

Follow DeePMD-kit documentation to install DeePMD-kit C++ interface with PyTorch backend support and other related MD packages. After that, you can build the plugin

# Assume libtorch has been contained in CMAKE_PREFIX_PATH
mkdir -p build
cd build
cmake .. -D CMAKE_INSTALL_PREFIX=/prefix/to/install
cmake --build . -j8
cmake --install .

libdeepmd_gnn.so will be installed into the directory you assign. When using any DeePMD-kit C++ interface, set the following environment variable in advance:

export DP_PLUGIN_PATH=/prefix/to/install/lib/libdeepmd_gnn.so

Usage

Follow Parameters section to prepare a DeePMD-kit input file.

dp --pt train input.json
dp --pt freeze

A frozen model file named frozen_model.pth will be generated. You can use it in the MD packages or other interfaces. For details, follow DeePMD-kit documentation.

Running LAMMPS + MACE with period boundary conditions

GNN models use message passing neural networks, so the neighbor list built with traditional cutoff radius will not work, since the ghost atoms also need to build neighbor list. By default, the model requests the neighbor list with a cutoff radius of $r_c \times N_{L}$, where $r_c$ is set by r_max and $N_L$ is set by num_interactions (MACE) / num_layers (NequIP), and rebuilds the neighbor list for ghost atoms. However, this approach is very inefficient.

The alternative approach for the MACE model (note: NequIP doesn't support such approach) is to use the mapping passed from LAMMPS, which does not support MPI. One needs to set DP_GNN_USE_MAPPING when freezing the models,

DP_GNN_USE_MAPPING=1 dp --pt freeze

and request the mapping when using LAMMPS (also requires DeePMD-kit v3.0.0rc0 or above). By using the mapping, the ghost atoms will be mapped to the real atoms, so the regular neighbor list with a cutoff radius of $r_c$ can be used.

atom_modify map array

In the future, we will explore utilizing the MPI to communicate the neighbor list, while this approach requires a deep hack for external packages.

Parameters

MACE

To use the MACE model, set "type": "mace" in the model section of the training script. Below is default values for the MACE model, most of which follows default values in the MACE package:

"model": {
  "type": "mace",
  "type_map": [
    "O",
    "H"
  ],
  "r_max": 5.0,
  "sel": "auto",
  "num_radial_basis": 8,
  "num_cutoff_basis": 5,
  "max_ell": 3,
  "interaction": "RealAgnosticResidualInteractionBlock",
  "num_interactions": 2,
  "hidden_irreps": "128x0e + 128x1o",
  "pair_repulsion": false,
  "distance_transform": "None",
  "correlation": 3,
  "gate": "silu",
  "MLP_irreps": "16x0e",
  "radial_type": "bessel",
  "radial_MLP": [64, 64, 64],
  "std": 1.0,
  "precision": "float32"
}

NequIP

"model": {
  "type": "nequip",
  "type_map": [
    "O",
    "H"
  ],
  "r_max": 5.0,
  "sel": "auto",
  "num_layers": 4,
  "l_max": 2,
  "num_features": 32,
  "nonlinearity_type": "gate",
  "parity": true,
  "num_basis": 8,
  "BesselBasis_trainable": true,
  "PolynomialCutoff_p": 6,
  "invariant_layers": 2,
  "invariant_neurons": 64,
  "use_sc": true,
  "irreps_edge_sh": "0e + 1e",
  "feature_irreps_hidden": "32x0o + 32x0e + 32x1o + 32x1e",
  "chemical_embedding_irreps_out": "32x0e",
  "conv_to_output_hidden_irreps_out": "16x0e",
  "precision": "float32"
}

DPRc support

In deepmd-gnn, the GNN model can be used in a DPRc way. Type maps that starts with m (such as mH) or OW or HW will be recognized as MM types. Two MM atoms will not build edges with each other. Such GNN+DPRc model can be directly used in AmberTools24.

Conservative MACE-OFF checkpoint loading

deepmd_gnn.mace_off provides a conservative bridge from selected official MACE-OFF checkpoints into DeePMD-GNN. The goal is to recover the parts that are really stored in the checkpoint while avoiding guesses about wrapper-only runtime semantics.

In practice, this path intentionally does less inference than the broader DPRc/QM/MM machinery:

  • it infers ordinary element type_map entries from checkpoint atomic_numbers
  • it restores checkpoint-side model semantics such as avg_num_neighbors from the original ScaleShiftMACE object instead of reusing DeePMD's runtime neighbor cap
  • it requires an explicit sel value, because sel is a DeePMD runtime neighbor-list cap and is not stored in the MACE-OFF checkpoint
  • it does not infer DPRc/MM labels such as mH, mC, HW, or OW
  • load_mace_off_model() keeps the original eager MACE checkpoint model inside the wrapper for closer native/wrapper parity, while convert_mace_off_to_deepmd() scripts the model only at export time
  • it uses torch.load(..., weights_only=False) to recover the original ScaleShiftMACE object, so callers should only use trusted checkpoints

Example:

deepmd-gnn mace-off convert mace_off23_small_dp.pt --model off23_small --sel 64

This produces a scripted DeePMD-GNN wrapper. That serialization step is useful, but it is still a good idea to validate the final downstream workflow you care about (for example in LAMMPS or AMBER).

Examples

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

deepmd_gnn-0.1.4.tar.gz (2.1 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

deepmd_gnn-0.1.4-py2.py3-none-win_amd64.whl (84.1 kB view details)

Uploaded Python 2Python 3Windows x86-64

deepmd_gnn-0.1.4-py2.py3-none-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (59.8 kB view details)

Uploaded Python 2Python 3manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

deepmd_gnn-0.1.4-py2.py3-none-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (60.2 kB view details)

Uploaded Python 2Python 3manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

deepmd_gnn-0.1.4-py2.py3-none-macosx_11_0_arm64.whl (57.2 kB view details)

Uploaded Python 2Python 3macOS 11.0+ ARM64

deepmd_gnn-0.1.4-py2.py3-none-macosx_10_13_x86_64.whl (57.3 kB view details)

Uploaded Python 2Python 3macOS 10.13+ x86-64

File details

Details for the file deepmd_gnn-0.1.4.tar.gz.

File metadata

  • Download URL: deepmd_gnn-0.1.4.tar.gz
  • Upload date:
  • Size: 2.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for deepmd_gnn-0.1.4.tar.gz
Algorithm Hash digest
SHA256 447489b140ed32254e2ecdae37a7f8814db58d0f1adc57c843d3a1dda121d6fc
MD5 95941912656735029e1b6e28c3b0013c
BLAKE2b-256 65f886c28a50faec9f3080e8045f668e5703381a3a192732152f19333895ae94

See more details on using hashes here.

Provenance

The following attestation bundles were made for deepmd_gnn-0.1.4.tar.gz:

Publisher: release.yaml on deepmodeling/deepmd-gnn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file deepmd_gnn-0.1.4-py2.py3-none-win_amd64.whl.

File metadata

  • Download URL: deepmd_gnn-0.1.4-py2.py3-none-win_amd64.whl
  • Upload date:
  • Size: 84.1 kB
  • Tags: Python 2, Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for deepmd_gnn-0.1.4-py2.py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 d573522b810ff91c6b50de522b0cd929fac48708c9ea9420b0be660ba4866862
MD5 762568d758e3cf3ccfef7ac7ab6e6985
BLAKE2b-256 fa3950be5dd05aa337a4d021648f1574f903654d9d9bd1bd31805281fc1c6bc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for deepmd_gnn-0.1.4-py2.py3-none-win_amd64.whl:

Publisher: release.yaml on deepmodeling/deepmd-gnn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file deepmd_gnn-0.1.4-py2.py3-none-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for deepmd_gnn-0.1.4-py2.py3-none-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3bff03301427269585d01e2e681cbb118c99de15bab9655efd81d8aadfc7ae86
MD5 80317becff8b6901dc143c40897426a4
BLAKE2b-256 cd14ee11474f2646e85cd82028cb07b7082c7c9081b5699cd1552da850c9f0cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for deepmd_gnn-0.1.4-py2.py3-none-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yaml on deepmodeling/deepmd-gnn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file deepmd_gnn-0.1.4-py2.py3-none-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for deepmd_gnn-0.1.4-py2.py3-none-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de94a1f815c2bee4c468e997b294d3731e75efda3465a4ec48e5aaab20d4b9de
MD5 99e5f6d4fd5448fe71251a43d38c1530
BLAKE2b-256 e7b5c518dfdf7727565af6f07afed96b6efde52fe483a78ed01d37cf293776a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for deepmd_gnn-0.1.4-py2.py3-none-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yaml on deepmodeling/deepmd-gnn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file deepmd_gnn-0.1.4-py2.py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deepmd_gnn-0.1.4-py2.py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c4b18b79fcf9af88f13aa86fd358768567f4ab99ecf673bb7732eba0075c5f7
MD5 3d09ff59e2a7383b901b6879b68c5b25
BLAKE2b-256 b468b2809a15f1c2eae8b583d809d7a722f81fe6aff8e4c36fc67a0142e3266a

See more details on using hashes here.

Provenance

The following attestation bundles were made for deepmd_gnn-0.1.4-py2.py3-none-macosx_11_0_arm64.whl:

Publisher: release.yaml on deepmodeling/deepmd-gnn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file deepmd_gnn-0.1.4-py2.py3-none-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for deepmd_gnn-0.1.4-py2.py3-none-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 94af20fa733a0864a1e840cf50493321940a7af36b44677e21ad66e6235800ae
MD5 8dd23c2cdbedb44ecd6f2148a48a930f
BLAKE2b-256 54e94ab69411f8e3d0a344fc37f34f3d578e8cf0229fe730204bc66ec94ade1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for deepmd_gnn-0.1.4-py2.py3-none-macosx_10_13_x86_64.whl:

Publisher: release.yaml on deepmodeling/deepmd-gnn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page