feat(pt/test): add unit test for the compression of se_e3_tebd (#5060)
Summary by CodeRabbit
- Tests
- Added comprehensive test suite validating model compression functionality, including consistency checks between original and compressed models across multiple configurations, support for various periodic boundary conditions, and integrated validation of physical properties.
✏️ Tip: You can customize this high-level summary in your review settings.
Signed-off-by: OutisLi 137472077+OutisLi@users.noreply.github.com Co-authored-by: Copilot 175728472+Copilot@users.noreply.github.com
DeePMD-kit
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
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:
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
v2
se_e2_r,se_e3, andse_atten(DPA-1).See our v2 paper for details of all features until v2.2.3.
v3
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! 🤓