Downloads · 30 days
28
25% of all-time downloads
isayevlab/aimnet2-pd
aimnet2-pd is a other model from isayevlab. Use it for the other task on the model card, and read the license before you ship it in a product. It is set up for aimnet. The card lists the license as mit.
AIMNet2 is a neural network interatomic potential for fast and accurate molecular simulations. This is an extended model supporting palladium-containing systems for organometallic catalysis and coordination chemistry.
Downloads · 30 days
28
25% of all-time downloads
All-time downloads
112
Public
Repo size
35.3 MB
Likes
0
Public
Click a slice to open those files.
.safetensors35.3 MB · 100%
From the Hugging Face model README
AIMNet2 is a neural network interatomic potential for fast and accurate molecular simulations. This is an extended model supporting palladium-containing systems for organometallic catalysis and coordination chemistry.
torch.compile for ~5x additional speedup on GPUpip install "aimnet[hf]"
from aimnet.calculators import AIMNet2Calculator
# Load from Hugging Face (downloads and caches automatically)
calc = AIMNet2Calculator("isayevlab/aimnet2-pd")
# Single-point calculation
results = calc(
{"coord": coords, "numbers": atomic_numbers, "charge": 0.0},
forces=True,
)
print(results["energy"]) # Energy in eV
print(results["forces"]) # Forces in eV/A
print(results["charges"]) # Partial charges in e
from aimnet.calculators.aimnet2ase import AIMNet2ASE
from ase.build import molecule
atoms = molecule("H2O")
atoms.calc = AIMNet2ASE("isayevlab/aimnet2-pd")
energy = atoms.get_potential_energy()
forces = atoms.get_forces()
This repo contains 4 ensemble members (ensemble_0.safetensors through ensemble_3.safetensors). The default loads member 0. For uncertainty estimation, load all 4 and average predictions.
| File | Description |
|---|---|
ensemble_0.safetensors | Ensemble member 0 (default) |
ensemble_1.safetensors | Ensemble member 1 |
ensemble_2.safetensors | Ensemble member 2 |
ensemble_3.safetensors | Ensemble member 3 |
config.json | Shared model configuration and metadata |
aimnet2-wb97m-d3 for As-containing systems@article{anstine2025aimnet2,
title={AIMNet2: A Neural Network Potential to Meet your Neutral, Charged, Organic, and Elemental-Organic Needs},
author={Anstine, Dylan and Zubatyuk, Roman and Isayev, Olexandr},
journal={Chemical Science},
year={2025},
publisher={Royal Society of Chemistry},
doi={10.1039/D4SC08572H}
}
MIT License