Skip to main content

.. role:: raw-html-m2r(raw) :format: html

:raw-html-m2r:<span style="font-size:larger;">DeePMD-kit Manual</span>

.. image:: https://img.shields.io/github/release/deepmodeling/deepmd-kit.svg?maxAge=86400 :target: https://github.com/deepmodeling/deepmd-kit/releases :alt: GitHub release

.. image:: https://readthedocs.org/projects/deepmd/badge/?version=latest :target: https://deepmd.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status

Table of contents

  • About DeePMD-kit <#about-deepmd-kit>_

    • Highlighted features <#highlighted-features>_
    • Code structure <#code-structure>_
    • License and credits <#license-and-credits>_
    • Deep Potential in a nutshell <#deep-potential-in-a-nutshell>_
  • Download and install <#download-and-install>_

  • Use DeePMD-kit <#use-deepmd-kit>_

  • Troubleshooting <#troubleshooting>_

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 <https://deepmd.readthedocs.io/>_.

Highlighted features

  • interfaced with TensorFlow\ , one of 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\ , i.e., LAMMPS and i-PI, respectively.
  • implements the Deep Potential series models\ , which have been successfully applied to finite and extended systems including organic molecules, metals, semiconductors, and insulators, etc.
  • implements MPI and GPU supports\ , makes 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.

Code structure

The code is organized as follows:

  • data/raw\ : tools manipulating the raw data files.

  • examples\ : example json parameter files.

  • source/3rdparty\ : third-party packages used by DeePMD-kit.

  • source/cmake\ : cmake scripts for building.

  • source/ipi\ : source code of i-PI client.

  • source/lib\ : source code of DeePMD-kit library.

  • source/lmp\ : source code of Lammps module.

  • source/op\ : tensorflow op implementation. working with library.

  • source/scripts\ : Python script for model freezing.

  • source/train\ : Python modules and scripts for training and testing.

License and credits

The project DeePMD-kit is licensed under GNU LGPLv3.0 <./LICENSE>_. If you use this code in any future publications, please cite this using 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.

Deep Potential in a nutshell

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 a 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 <http://www.global-sci.com/galley/CiCP-2017-0213.pdf>_ 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 <https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.120.143001>_\ ) 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 being 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 <https://arxiv.org/abs/1805.09003>_\ ) 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 interests 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 <https://aip.scitation.org/doi/full/10.1063/1.5027645>_ for more details.

Download and install

Please follow our github <https://github.com/deepmodeling/deepmd-kit>_ webpage to download the latest released version <https://github.com/deepmodeling/deepmd-kit/tree/master>_ and development version <https://github.com/deepmodeling/deepmd-kit/tree/devel>_.

DeePMD-kit offers multiple installation methods. It is recommend using easily methods like offline packages <doc/install.md#offline-packages>\ , conda <doc/install.md#with-conda> and docker <doc/install.md#with-docker>_.

One may manually install DeePMD-kit by following the instuctions on installing the python interface <doc/install.md#install-the-python-interface>_ and installing the C++ interface <doc/install.md#install-the-c-interface>_. The C++ interface is necessary when using DeePMD-kit with LAMMPS and i-PI.

Use DeePMD-kit

The typical procedure of using DeePMD-kit includes 5 steps

#. Prepare data <doc/use-deepmd-kit.md#prepare-data>_ #. Train a model <doc/use-deepmd-kit.md#train-a-model>_ #. Freeze the model <doc/use-deepmd-kit.md#freeze-a-model>_ #. Test the model <doc/use-deepmd-kit.md#test-a-model>_ #. Inference the model in python <doc/use-deepmd-kit.md#model-inference>_ or using the model in other molecular simulation packages like LAMMPS <doc/use-deepmd-kit.md#run-md-with-lammps>\ , i-PI <doc/use-deepmd-kit.md#run-path-integral-md-with-i-pi> or ASE <doc/use-deepmd-kit.md#use-deep-potential-with-ase>_.

A quick-start on using DeePMD-kit can be found here <doc/use-deepmd-kit.md>_.

A full document <doc/train-input-auto.rst>_ on options in the training input script is available.

Troubleshooting

In consequence of various differences of computers or systems, problems may occur. Some common circumstances are listed as follows. If other unexpected problems occur, you're welcome to contact us for help.

Model compatability

When the version of DeePMD-kit used to training model is different from the that of DeePMD-kit running MDs, one has the problem of model compatability.

DeePMD-kit guarantees that the codes with the same major and minor revisions are compatible. That is to say v0.12.5 is compatible to v0.12.0, but is not compatible to v0.11.0 nor v1.0.0.

Installation: inadequate versions of gcc/g++

Sometimes you may use a gcc/g++ of version <4.9. If you have a gcc/g++ of version > 4.9, say, 7.2.0, you may choose to use it by doing

.. code-block:: bash

export CC=/path/to/gcc-7.2.0/bin/gcc export CXX=/path/to/gcc-7.2.0/bin/g++

If, for any reason, for example, you only have a gcc/g++ of version 4.8.5, you can still compile all the parts of TensorFlow and most of the parts of DeePMD-kit. i-Pi will be disabled automatically.

Installation: build files left in DeePMD-kit

When you try to build a second time when installing DeePMD-kit, files produced before may contribute to failure. Thus, you may clear them by

.. code-block:: bash

cd build rm -r *

and redo the cmake process.

MD: cannot run LAMMPS after installing a new version of DeePMD-kit

This typically happens when you install a new version of DeePMD-kit and copy directly the generated USER-DEEPMD to a LAMMPS source code folder and re-install LAMMPS.

To solve this problem, it suffices to first remove USER-DEEPMD from LAMMPS source code by

.. code-block:: bash

make no-user-deepmd

and then install the new USER-DEEPMD.

If this does not solve your problem, try to decompress the LAMMPS source tarball and install LAMMPS from scratch again, which typically should be very fast.

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-1.3.2.tar.gz (2.8 MB view details)

Uploaded Source

Built Distributions

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

deepmd_kit-1.3.2-cp38-cp38-manylinux2010_x86_64.whl (476.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

deepmd_kit-1.3.2-cp37-cp37m-manylinux2010_x86_64.whl (476.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

deepmd_kit-1.3.2-cp36-cp36m-manylinux2010_x86_64.whl (476.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

File details

Details for the file deepmd-kit-1.3.2.tar.gz.

File metadata

  • Download URL: deepmd-kit-1.3.2.tar.gz
  • Upload date:
  • Size: 2.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.8.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for deepmd-kit-1.3.2.tar.gz
Algorithm Hash digest
SHA256 6e84b2b71153d30f939a86e17ac2c1e1163bb9f245ef84c0586d82d40019f79f
MD5 3e5dfb765a0f0df7df195fb279f21384
BLAKE2b-256 9b12c7e88140659780b4356027865bee924eaffc1ed0e2f7db3754c0fb793791

See more details on using hashes here.

File details

Details for the file deepmd_kit-1.3.2-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: deepmd_kit-1.3.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 476.1 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.8.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for deepmd_kit-1.3.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 890b083f8986d8dd001efd296c84966871c610087281cd4a838f98c832ec66de
MD5 49445ec5a30b71de01a870de29c00833
BLAKE2b-256 8b8ec372294bbdb9576dc9dafa8f2efa9525642d8200a7f2ec139a34de5a67ac

See more details on using hashes here.

File details

Details for the file deepmd_kit-1.3.2-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: deepmd_kit-1.3.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 476.1 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.8.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for deepmd_kit-1.3.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 776102d668e166b0c31a84d8c9dcebef6106b93fc8d7e0d6db4f0270d5b0f9d9
MD5 71104a8d6eb0f31f93751a0e1857dae1
BLAKE2b-256 e57473d19ab5b016d05d78d2cc2a549a24f9b0ad0b369c1a1dddbf0e724417b2

See more details on using hashes here.

File details

Details for the file deepmd_kit-1.3.2-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: deepmd_kit-1.3.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 476.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.8.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for deepmd_kit-1.3.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9058bf7db5c9a97b03fd777d367a6edab09198582b8276768f294ce5dc33be1a
MD5 ca0773290627422456906395b56b788e
BLAKE2b-256 fe69b6b1c63b493f357ba071c182c3e6940233d6b609aa505a0ef2a16598a5cc

See more details on using hashes here.

Release history Release notifications | RSS feed

3.2.0

6 files

3.1.3

6 files

3.1.2

6 files

3.1.1

6 files

3.1.0

6 files

3.0.3

6 files

3.0.2

6 files

3.0.1

6 files

3.0.0

6 files

2.2.11

6 files

2.2.10

6 files

2.2.9

6 files

2.2.8

6 files

2.2.7

6 files

2.2.6

6 files

2.2.5

6 files

2.2.4

6 files

2.2.3

6 files

2.2.2

5 files

2.2.1

5 files

2.2.0

5 files

2.1.5

6 files

2.1.4

6 files

2.1.3

6 files

2.1.2

1 file

2.1.1

6 files

2.1.0

6 files

2.0.3

5 files

2.0.2

5 files

2.0.1

5 files

2.0.0

5 files

2.0.0a1

1.3.3

4 files

This release

1.3.2 This release

4 files

1.3.1

4 files

1.3.0

4 files

1.2.4

4 files

1.2.3

4 files

1.2.2

4 files

1.2.1

3 files

1.2.0

3 files

1.1.5

4 files

1.1.4

3 files

1.1.3

3 files

1.1.2

3 files

1.1.1

4 files

1.1.0

4 files

1.0.2

4 files

1.0.1

4 files

1.0.0

4 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page