A problem-oriented package for rapidly creating, screening, and optimizing new machine learning force fields
Project description
ABFML
1. Introduction
ABFML is a software platform developed on the popular deep learning framework PyTorch. It provides extensions and support for third-party packages like LAMMPS and ASE. The primary goal of ABFML is to offer researchers a user-friendly platform for the rapid, simple, and efficient development, fitting, and application of new machine learning force field models. By leveraging PyTorch's powerful tensor operations, ABFML simplifies the complex process of developing force field models and accelerates their application in molecular simulations.
2. Installation
2.1 Installing ABFML
To get started with ABFML, follow these steps to set up the environment and install the necessary components:
# 1. Create a new conda environment:
conda create -n abfml python=3.11
# 2. Activate the conda environment:
conda activate abfml
# This command activates the `abfml` environment, making it the current working environment.
# 3. Install PyTorch:
conda install pytorch
# 4. Download ABFML and Navigate to the ABFML directory:
cd path/ABFML
# 5. Install ABFML:
pip install .
# This installs ABFML from the local directory.
2.2 Installing ABFML-LAMMPS
In general for force field development users, this step can be skipped for now. It would be more efficient to apply it to large-scale molecular dynamics when all aspects of the force field are relevantly calculated/checked by the more convenient ASEs To integrate ABFML with LAMMPS, follow these steps:
# 1. Download LAMMPS:
# Obtain the LAMMPS package suitable for your system from the [LAMMPS website](https://lammps.sandia.gov/). This will be the molecular dynamics engine that ABFML will interact with.
# 2. Download Libtorch:
# Libtorch is the PyTorch C++ API.
# 3. Copy ABFML files to LAMMPS:
cp abfml/lmp/ABFML lammps/src
cp abfml/lmp/Makefile.mpi lammps/src/MAKE
# These commands copy the necessary ABFML files into the LAMMPS source directory.
# 4. Modify the Makefile:
# Edit `Makefile.mpi` in the `lammps/src/MAKE` directory to match your system's configuration, specifically setting the paths to your compilers and libraries.
CCFLAGS += -I/PATH/libtorch/include/
CCFLAGS += -I/PATH/libtorch/include/torch/csrc/api/include/
CCFLAGS += -I/PATH/libtorch
LINKFLAGS += -L/PATH/libtorch/lib/ -ltorch -lc10 -ltorch_cpu
# 5. Compile LAMMPS with ABFML:
# Navigate to the `src` directory of LAMMPS and install:
export LD_LIBRARY_PATH=path/libtorch/lib:$LD_LIBRARY_PATH
cd src
make yes-abfml
make mpi
# 6. Run lammps:
pair_style abfml model.pt
pair coeff * * 29 30
# Use the element number to represent the element type
Note: Ensure your GCC compiler is version 9.0 or above, as older versions may not support.
3. Build a new model
Build your own model input in the input file and specify the path to the model's py file, This is an example of a simple LJ potential, which can be found in example/new-model。
{
"model_setting": {
"name": "user_defined",
"model_path": "D:/Work/PyCharm/ABFML/example/new-MLFF/LJ-model.py",
"field_name": "LJ",
"normal_name": "LJNormal",
"descriptor" : {
"epsilon": 1.0,
"sigma": 1.5
}
}
}
Then you can use the relevant modules for training, validation and simulation
4. Run
To run an example using ABFML, follow these steps:
# 1. Activate the ABFML environment:
conda activate abfml
# 2. Navigate to the example directory:
cd ABFML/example/DP-sea
# 3. Quick check for model correctness
abfml check -m model.pt -d float32
# 4. train:
abfml train input.json
# This command starts the training process using the configurations specified in `input.json`.
# 5. valid:
abfml valid -m 'model.pt' -f "../data/test.extxyz" -n 10
Use the ASE calculator to perform quick calculations on the model created.
from abfml.calculate import ABFML
from ase.build import bulk
calc = ABFML('model.pt')
structure = bulk('Cu', a=3.62)
structure.calc = calc
energy = structure.get_potential_energy()
force = structure.get_forces()
Cite
If you use ABFML in your research, please cite the following paper:
- Xingze Geng, Jianing Gu, Gaowu Qin, Lin-Wang Wang, Xiangying Meng; ABFML: A problem-oriented package for rapidly creating, screening, and optimizing new machine learning force fields. J. Chem. Phys. 7 February 2025; 162 (5): 052502. https://doi.org/10.1063/5.0247559
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file abfml-2025.2.20.tar.gz.
File metadata
- Download URL: abfml-2025.2.20.tar.gz
- Upload date:
- Size: 77.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c27cf8ccc6ff117553a0392ef6c4ba7a263be52153e222b8f57c7bcccc05c212
|
|
| MD5 |
967f56777450424e3d622ede5e0d0586
|
|
| BLAKE2b-256 |
61648b8fae06d6d1c59bd18c03028121bffe263f57eb2b20c94d3994b520c083
|
File details
Details for the file abfml-2025.2.20-py3-none-any.whl.
File metadata
- Download URL: abfml-2025.2.20-py3-none-any.whl
- Upload date:
- Size: 71.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c49deb285866b86bf5de7dcf9700e05ecba26f7b6b3492c864ef6aa2c5a57fa
|
|
| MD5 |
6768ca05726b4d36934bc5f640bc9c62
|
|
| BLAKE2b-256 |
e1f8d8cfdda0c96205f356359634e8f853f06230018c11b5d602f738723d035f
|