Skip to main content

A deep learning package for many-body potential energy representation and molecular dynamics

Project description

DeePMD-kit logo


DeePMD-kit

GitHub release offline packages conda-forge pip install docker pull Documentation Status

About DeePMD-kit

DeePMD-kit is a package written in Python/C++, designed to minimize the effort required to build deep learning-based model of interatomic potential energy and force field and to perform molecular dynamics (MD). This brings new hopes to addressing the accuracy-versus-efficiency dilemma in molecular simulations. Applications of DeePMD-kit span from finite molecules to extended systems and from metallic systems to chemically bonded systems.

For more information, check the documentation.

Highlighted features

  • interfaced with multiple backends, including TensorFlow, PyTorch, JAX, and Paddle, the most popular deep learning frameworks, making the training process highly automatic and efficient.
  • interfaced with high-performance classical MD and quantum (path-integral) MD packages, including LAMMPS, i-PI, AMBER, CP2K, GROMACS, OpenMM, and ABACUS.
  • implements the Deep Potential series models, which have been successfully applied to finite and extended systems, including organic molecules, metals, semiconductors, insulators, etc.
  • implements MPI and GPU supports, making it highly efficient for high-performance parallel and distributed computing.
  • highly modularized, easy to adapt to different descriptors for deep learning-based potential energy models.

License and credits

The project DeePMD-kit is licensed under GNU LGPLv3.0. If you use this code in any future publications, please cite the following publications for general purpose:

  • Han Wang, Linfeng Zhang, Jiequn Han, and Weinan E. "DeePMD-kit: A deep learning package for many-body potential energy representation and molecular dynamics." Computer Physics Communications 228 (2018): 178-184. doi:10.1016/j.cpc.2018.03.016 Citations
  • Jinzhe Zeng, Duo Zhang, Denghui Lu, Pinghui Mo, Zeyu Li, Yixiao Chen, Marián Rynik, Li'ang Huang, Ziyao Li, Shaochen Shi, Yingze Wang, Haotian Ye, Ping Tuo, Jiabin Yang, Ye Ding, Yifan Li, Davide Tisi, Qiyu Zeng, Han Bao, Yu Xia, Jiameng Huang, Koki Muraoka, Yibo Wang, Junhan Chang, Fengbo Yuan, Sigbjørn Løland Bore, Chun Cai, Yinnian Lin, Bo Wang, Jiayan Xu, Jia-Xin Zhu, Chenxing Luo, Yuzhi Zhang, Rhys E. A. Goodall, Wenshuo Liang, Anurag Kumar Singh, Sikai Yao, Jingchao Zhang, Renata Wentzcovitch, Jiequn Han, Jie Liu, Weile Jia, Darrin M. York, Weinan E, Roberto Car, Linfeng Zhang, Han Wang. "DeePMD-kit v2: A software package for deep potential models." J. Chem. Phys. 159 (2023): 054801. doi:10.1063/5.0155600 Citations
  • Jinzhe Zeng, Duo Zhang, Anyang Peng, Xiangyu Zhang, Sensen He, Yan Wang, Xinzijian Liu, Hangrui Bi, Yifan Li, Chun Cai, Chengqian Zhang, Yiming Du, Jia-Xin Zhu, Pinghui Mo, Zhengtao Huang, Qiyu Zeng, Shaochen Shi, Xuejian Qin, Zhaoxi Yu, Chenxing Luo, Ye Ding, Yun-Pei Liu, Ruosong Shi, Zhenyu Wang, Sigbjørn Løland Bore, Junhan Chang, Zhe Deng, Zhaohan Ding, Siyuan Han, Wanrun Jiang, Guolin Ke, Zhaoqing Liu, Denghui Lu, Koki Muraoka, Hananeh Oliaei, Anurag Kumar Singh, Haohui Que, Weihong Xu, Zhangmancang Xu, Yong-Bin Zhuang, Jiayu Dai, Timothy J. Giese, Weile Jia, Ben Xu, Darrin M. York, Linfeng Zhang, Han Wang. "DeePMD-kit v3: A Multiple-Backend Framework for Machine Learning Potentials." J. Chem. Theory Comput. 21 (2025): 4375-4385. doi:10.1021/acs.jctc.5c00340 Citations

In addition, please follow the bib file to cite the methods you used.

Highlights in major versions

Initial version

The goal of Deep Potential is to employ deep learning techniques and realize an inter-atomic potential energy model that is general, accurate, computationally efficient and scalable. The key component is to respect the extensive and symmetry-invariant properties of a potential energy model by assigning a local reference frame and a local environment to each atom. Each environment contains a finite number of atoms, whose local coordinates are arranged in a symmetry-preserving way. These local coordinates are then transformed, through a sub-network, to so-called atomic energy. Summing up all the atomic energies gives the potential energy of the system.

The initial proof of concept is in the Deep Potential paper, which employed an approach that was devised to train the neural network model with the potential energy only. With typical ab initio molecular dynamics (AIMD) datasets this is insufficient to reproduce the trajectories. The Deep Potential Molecular Dynamics (DeePMD) model overcomes this limitation. In addition, the learning process in DeePMD improves significantly over the Deep Potential method thanks to the introduction of a flexible family of loss functions. The NN potential constructed in this way reproduces accurately the AIMD trajectories, both classical and quantum (path integral), in extended and finite systems, at a cost that scales linearly with system size and is always several orders of magnitude lower than that of equivalent AIMD simulations.

Although highly efficient, the original Deep Potential model satisfies the extensive and symmetry-invariant properties of a potential energy model at the price of introducing discontinuities in the model. This has negligible influence on a trajectory from canonical sampling but might not be sufficient for calculations of dynamical and mechanical properties. These points motivated us to develop the Deep Potential-Smooth Edition (DeepPot-SE) model, which replaces the non-smooth local frame with a smooth and adaptive embedding network. DeepPot-SE shows great ability in modeling many kinds of systems that are of interest in the fields of physics, chemistry, biology, and materials science.

In addition to building up potential energy models, DeePMD-kit can also be used to build up coarse-grained models. In these models, the quantity that we want to parameterize is the free energy, or the coarse-grained potential, of the coarse-grained particles. See the DeePCG paper for more details.

v1

  • Code refactor to make it highly modularized.
  • GPU support for descriptors.

v2

  • Model compression. Accelerate the efficiency of model inference 4-15 times.
  • New descriptors. Including se_e2_r, se_e3, and se_atten (DPA-1).
  • Hybridization of descriptors. Hybrid descriptor constructed from the concatenation of several descriptors.
  • Atom type embedding. Enable atom-type embedding to decline training complexity and refine performance.
  • Training and inference of the dipole (vector) and polarizability (matrix).
  • Split of training and validation dataset.
  • Optimized training on GPUs, including CUDA and ROCm.
  • Non-von-Neumann.
  • C API to interface with the third-party packages.

See our v2 paper for details of all features until v2.2.3.

v3

  • Multiple backends supported. Add PyTorch and JAX backends.
  • The DPA2 and DPA3 models.
  • Plugin mechanisms for external models.

See our v3 paper for details of all features until v3.0.

Install and use DeePMD-kit

Please read the online documentation for how to install and use DeePMD-kit.

Code structure

The code is organized as follows:

  • examples: examples.
  • deepmd: DeePMD-kit python modules.
  • source/lib: source code of the core library.
  • source/op: Operator (OP) implementation.
  • source/api_cc: source code of DeePMD-kit C++ API.
  • source/api_c: source code of the C API.
  • source/nodejs: source code of the Node.js API.
  • source/ipi: source code of i-PI client.
  • source/lmp: source code of LAMMPS module.
  • source/gmx: source code of Gromacs plugin.

Contributing

See DeePMD-kit Contributing Guide to become a contributor! 🤓

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_kit-3.1.0.tar.gz (1.3 MB view details)

Uploaded Source

Built Distributions

deepmd_kit-3.1.0-py37-none-win_amd64.whl (1.7 MB view details)

Uploaded Python 3.7Windows x86-64

deepmd_kit-3.1.0-py37-none-manylinux_2_28_x86_64.whl (9.2 MB view details)

Uploaded Python 3.7manylinux: glibc 2.28+ x86-64

deepmd_kit-3.1.0-py37-none-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded Python 3.7manylinux: glibc 2.28+ ARM64

deepmd_kit-3.1.0-py37-none-macosx_11_0_x86_64.whl (8.8 MB view details)

Uploaded Python 3.7macOS 11.0+ x86-64

deepmd_kit-3.1.0-py37-none-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded Python 3.7macOS 11.0+ ARM64

File details

Details for the file deepmd_kit-3.1.0.tar.gz.

File metadata

  • Download URL: deepmd_kit-3.1.0.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for deepmd_kit-3.1.0.tar.gz
Algorithm Hash digest
SHA256 6c2696e667c487a31c14428f29092534037fbab296d0e367c3889bf9382f0929
MD5 f2303425b467c52c9cd94a1a277e3e78
BLAKE2b-256 24131e314e06668fa160ae9561acb8a7af524489d499348886d75f580ddb5489

See more details on using hashes here.

Provenance

The following attestation bundles were made for deepmd_kit-3.1.0.tar.gz:

Publisher: build_wheel.yml on deepmodeling/deepmd-kit

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_kit-3.1.0-py37-none-win_amd64.whl.

File metadata

  • Download URL: deepmd_kit-3.1.0-py37-none-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: Python 3.7, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for deepmd_kit-3.1.0-py37-none-win_amd64.whl
Algorithm Hash digest
SHA256 1db8743b33976cf41b6ed220cf1e8bae73a5e21166d86fee05df7771834cf5fa
MD5 5252304f1d2fd0085adc3df98f651d88
BLAKE2b-256 159293c540ee3cbbf5cfb43641a1eee06edc566cf9abf63bd850c696f75db767

See more details on using hashes here.

Provenance

The following attestation bundles were made for deepmd_kit-3.1.0-py37-none-win_amd64.whl:

Publisher: build_wheel.yml on deepmodeling/deepmd-kit

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_kit-3.1.0-py37-none-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for deepmd_kit-3.1.0-py37-none-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82909da80906fa1dc5977b2b9bb7abeb8fbeaf1cc20ca842217401ff3b0aa2dc
MD5 f1b5f2bff020cf475dd4a10be1d4a936
BLAKE2b-256 ca3b4c2e19a461e9ca320b77532a7ab8d4736b5d46db4a7e5ff46896558e891f

See more details on using hashes here.

Provenance

The following attestation bundles were made for deepmd_kit-3.1.0-py37-none-manylinux_2_28_x86_64.whl:

Publisher: build_wheel.yml on deepmodeling/deepmd-kit

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_kit-3.1.0-py37-none-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for deepmd_kit-3.1.0-py37-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76b8ecf5f35da99f36385fb76820519392ad7f13aba6237910642860eeb1d9ca
MD5 0cf4d444aec7618d8f74a8cb405ca965
BLAKE2b-256 ba54c7d3a4cbe831bc74e2124b594247b59e75267cbb45193709bb26f9eb56de

See more details on using hashes here.

Provenance

The following attestation bundles were made for deepmd_kit-3.1.0-py37-none-manylinux_2_28_aarch64.whl:

Publisher: build_wheel.yml on deepmodeling/deepmd-kit

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_kit-3.1.0-py37-none-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for deepmd_kit-3.1.0-py37-none-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 92f689f7de5a7b7f3debe1ad5bfef8c4034a21be1958985f2c79f63aa571b350
MD5 d98fd8b61df1501bb62f5452f922650e
BLAKE2b-256 adcc342339639cb56b322c1fce3b9b1725a133c8f2063afd5c4fe6c19a6bb7df

See more details on using hashes here.

Provenance

The following attestation bundles were made for deepmd_kit-3.1.0-py37-none-macosx_11_0_x86_64.whl:

Publisher: build_wheel.yml on deepmodeling/deepmd-kit

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_kit-3.1.0-py37-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deepmd_kit-3.1.0-py37-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c82c5b6a6fa4e4675e9084b946fc3b7882ffa798cd0a3d24adbe95616d0d0efd
MD5 16e0e4cd12c79e3722882b39e3607e94
BLAKE2b-256 2842395476e5c62058ebae3154fdd4eb87c150cfbc80bef160ea88e509623461

See more details on using hashes here.

Provenance

The following attestation bundles were made for deepmd_kit-3.1.0-py37-none-macosx_11_0_arm64.whl:

Publisher: build_wheel.yml on deepmodeling/deepmd-kit

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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page