Modules¶
Neural network modules and model components.
Core Modules¶
core
¶
SRRep(key_out='e_rep', cutoff_fn='none', rc=5.2, reduce_sum=True)
¶
Bases: Module
GFN1-stype short range repulsion function
Source code in aimnet/modules/core.py
198 199 200 201 202 203 204 205 206 207 208 209 210 211 | |
MLP(n_in, n_out, hidden=None, activation_fn='torch.nn.GELU', activation_kwargs=None, weight_init_fn='torch.nn.init.xavier_normal_', bias=True, last_linear=True)
¶
Convenience function to build MLP from config
Source code in aimnet/modules/core.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | |
AEV and Convolution Modules¶
aev
¶
AEVSV(rmin=0.8, rc_s=5.0, nshifts_s=16, eta_s=None, rc_v=None, nshifts_v=None, eta_v=None, shifts_s=None, shifts_v=None)
¶
Bases: Module
AEV module to expand distances and vectors toneighbors over shifted Gaussian basis functions.
Parameters:¶
rmin : float, optional
Minimum distance for the Gaussian basis functions. Default is 0.8.
rc_s : float, optional
Cutoff radius for scalar features. Default is 5.0.
nshifts_s : int, optional
Number of shifts for scalar features. Default is 16.
eta_s : Optional[float], optional
Width of the Gaussian basis functions for scalar features. Will estimate reasonable default.
rc_v : Optional[float], optional
Cutoff radius for vector features. Default is same as rc_s.
nshifts_v : Optional[int], optional
Number of shifts for vector features. Default is same as nshifts_s
eta_v : Optional[float], optional
Width of the Gaussian basis functions for vector features. Will estimate reasonable default.
shifts_s : Optional[List[float]], optional
List of shifts for scalar features. Default equidistant between rmin and rc_s
shifts_v : Optional[List[float]], optional
List of shifts for vector features. Default equidistant between rmin and rc_v
Source code in aimnet/modules/aev.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | |
ConvSV(nshifts_s, nchannel, d2features=False, nshifts_v=None, ncomb_v=None)
¶
Bases: Module
AIMNet2 type convolution: encoding of local environment which combines geometry of local environment and atomic features.
Parameters:¶
nshifts_s : int Number of shifts (gaussian basis functions) for scalar convolution. nchannel : int Number of feature channels for atomic features. d2features : bool, optional Flag indicating whether to use 2D features. Default is False. nshifts_v : Optional[int], optional Number of shifts for vector convolution. If not provided, defaults to the value of nshifts_s. ncomb_v : Optional[int], optional Number of linear combinations for vector features. If not provided, defaults to the value of nshifts_v.
Source code in aimnet/modules/aev.py
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | |
Long-Range Modules¶
lr
¶
D3TS(a1, a2, s8, s6=1.0, key_in='disp_param', key_out='energy')
¶
Bases: Module
DFT-D3-like pairwise dispersion with TS combination rule
Source code in aimnet/modules/lr.py
748 749 750 751 752 753 754 755 756 757 | |
DFTD3(s8, a1, a2, s6=1.0, cutoff=15.0, smoothing_fraction=0.2, key_out='energy')
¶
Bases: Module
DFT-D3 implementation using nvalchemiops GPU-accelerated kernels.
BJ damping, C6 and C8 terms, without 3-body term.
This implementation uses nvalchemiops.torch.interactions.dispersion.dftd3 for GPU-accelerated computation of dispersion energies, forces, and virial. The embedded model path injects explicit forces/virial into autograd only when coordinate or strain gradients are requested; the external calculator path returns detached derivative terms.
Parameters¶
s8 : float Scaling factor for C8 term. a1 : float BJ damping parameter 1. a2 : float BJ damping parameter 2. s6 : float, optional Scaling factor for C6 term. Default is 1.0. cutoff : float, optional Cutoff distance in Angstroms for smoothing. Default is 15.0. smoothing_fraction : float, optional Fraction of cutoff distance used for smoothing window width. Smoothing starts at cutoff * (1 - smoothing_fraction) and ends at cutoff. Example: With cutoff=15.0 and smoothing_fraction=0.2: - Smoothing starts at 12.0 Ã… (15.0 * 0.8) - Smoothing ends at 15.0 Ã… Default is 0.2 (20% of cutoff as smoothing window). key_out : str, optional Key for output energy in data dict. Default is "energy". Attributes
smoothing_on : float Distance where smoothing starts (Angstroms). smoothing_off : float Distance where smoothing ends / cutoff (Angstroms). s6, s8, a1, a2 : float BJ damping parameters.
Notes¶
Neighbor list keys follow a suffix resolution pattern: methods first look for module-specific keys (e.g., nbmat_dftd3, shifts_dftd3), falling back to shared _lr suffix (nbmat_lr, shifts_lr) if not found.
Source code in aimnet/modules/lr.py
1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 | |
forward(data, *, compute_forces=False, compute_virial=False, hessian=False, scaling=None, coord_unstrained=None, cell_unstrained=None)
¶
Compute DFT-D3 energy and optional explicit derivative terms.
The embedded path returns an autograd-capable energy only when the coordinate or explicit calculator strain inputs require it. Explicit derivative requests return detached energy and derivative terms. The strain-wrapper kwargs are for direct differentiable callers; the calculator uses explicit derivative terms for stress because DFT-D3 has no trainable parameters.
The returned virial follows the calculator-side external-derivative
convention: get_derivatives subtracts terms.virial.mT from the
strain gradient (the same path DSF uses). FD-validated against
dE/dscaling in :class:tests.test_dftd3.TestDFTD3ForwardTerms.
Source code in aimnet/modules/lr.py
1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 | |
set_smoothing(cutoff, smoothing_fraction=0.2)
¶
Update smoothing parameters based on new cutoff and fraction.
Parameters¶
cutoff : float Cutoff distance in Angstroms. smoothing_fraction : float Fraction of cutoff used as smoothing window width. Smoothing occurs from cutoff * (1 - smoothing_fraction) to cutoff. Example: smoothing_fraction=0.2 means smoothing over last 20% of cutoff distance (from 0.8*cutoff to cutoff). Default is 0.2.
Source code in aimnet/modules/lr.py
1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 | |
ExternalDerivativeTerms(forces=None, virial=None)
dataclass
¶
Explicit derivative terms returned by external nvalchemiops backends.
LRCoulomb(key_in='charges', key_out='e_h', rc=4.6, method='simple', dsf_alpha=0.2, dsf_rc=15.0, ewald_accuracy=1e-06, subtract_sr=True, envelope='exp')
¶
Bases: Module
Long-range Coulomb energy module.
Computes electrostatic energy using one of several methods:
simple (all pairs), DSF (damped shifted force), Ewald summation, or
Particle Mesh Ewald (PME). DSF, Ewald, and PME are backed by
nvalchemiops; Ewald and PME require periodic systems with a cell.
Parameters¶
key_in : str Key for input charges in data dict. Default is "charges". key_out : str Key for output energy in data dict. Default is "e_h". rc : float Short-range cutoff radius. Default is 4.6 Angstrom. method : str Coulomb method: "simple", "dsf", "ewald", or "pme". Default is "simple". dsf_alpha : float Alpha parameter for DSF method. Default is 0.2. dsf_rc : float Cutoff for DSF method. Default is 15.0. ewald_accuracy : float Target accuracy for Ewald and PME summation. Controls real-space and reciprocal-space cutoffs (and PME mesh dimensions). Lower values give higher accuracy at higher cost. Default is 1e-6. subtract_sr : bool Whether to subtract short-range contribution. Default is True. envelope : str Envelope function for SR cutoff: "exp" or "cosine". Default is "exp".
Notes¶
Energy accumulation uses float64 for numerical precision, particularly important for large systems where many small contributions can suffer from floating-point error accumulation.
Neighbor list keys follow a suffix resolution pattern: methods first look for module-specific keys (e.g., nbmat_coulomb, shifts_coulomb), falling back to shared _lr suffix (nbmat_lr, shifts_lr) if not found.
DSF uses nvalchemiops.torch.interactions.electrostatics.dsf_coulomb
for plain inference. DSF Hessian and force/stress training instead go
through a closed-form pure-PyTorch path (:meth:_coul_dsf_torch), which is
twice-differentiable by autograd and RELAXED-CHARGE: it differentiates
through the model-predicted charges, so its Hessian includes the
charge-response (the d^2E / (dq . dr) coupling).
Ewald and PME call nvalchemiops (>=0.4.1) energy-only with
positions, charges, and cell left in the autograd graph: forces, stress,
dense Hessians, and HVPs come from the calculator's total-energy
autograd and are RELAXED-CHARGE (they include the d^2E / (dq . dr)
charge-response coupling), the same contract as the DSF torch path.
Selecting PME raises on nvalchemiops < 0.4.1: on 0.4.0 the PME
charge-gradient backward silently corrupts train-mode forces inside the
full calculator graph (create_graph=True), fixed upstream in 0.4.1.
Source code in aimnet/modules/lr.py
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | |
coul_simple(data)
¶
Compute pairwise Coulomb energy.
With subtract_sr=True (default): Returns LR only (FULL - SR) With subtract_sr=False: Returns FULL pairwise Coulomb
Source code in aimnet/modules/lr.py
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | |
forward(data, *, compute_forces=False, compute_virial=False, training_derivatives=False, hessian=False)
¶
Add the long-range Coulomb energy to data[self.key_out].
The mode flags select between explicit-terms and differentiable paths
for simple/dsf. ewald/pme are energy-graph-only and
ignore all four flags: they never return explicit terms (terms is
None), and every derivative comes from autograd of the energy.
Source code in aimnet/modules/lr.py
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 | |
SRCoulomb(rc=4.6, key_in='charges', key_out='energy', envelope='exp')
¶
Bases: Module
Subtract short-range Coulomb contribution from energy.
For models trained with "simple" Coulomb mode, the NN has implicitly learned the short-range Coulomb interaction. When using DSF or Ewald summation for the full Coulomb energy, we need to subtract this short-range contribution to avoid double-counting.
Parameters¶
rc : float Cutoff radius for short-range Coulomb. Default is 4.6 Angstrom. key_in : str Key for input charges in data dict. Default is "charges". key_out : str Key for output energy in data dict. Default is "energy". envelope : str Envelope function for cutoff: "exp" (mollifier) or "cosine". Default is "exp".
Source code in aimnet/modules/lr.py
637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 | |
forward(data)
¶
Subtract short-range Coulomb from energy.
Source code in aimnet/modules/lr.py
654 655 656 657 658 659 660 661 662 663 | |
AIMNet2 Model¶
aimnet2
¶
Base Classes¶
base
¶
AIMNet2Base()
¶
Bases: Module
Base class for AIMNet2 models. Implements pre-processing data: converting to right dtype and device, setting nb mode, calculating masks.
Source code in aimnet/models/base.py
262 263 264 265 | |
metadata
property
¶
Return model metadata if available.
prepare_input(data)
¶
Common operations for input preparation.
Source code in aimnet/models/base.py
281 282 283 284 285 286 287 288 289 290 | |
ModelMetadata
¶
Bases: TypedDict
Metadata returned by load_model().
This TypedDict documents the structure of the metadata dictionary.
assemble_v2_model(model_config, state_dict, metadata, *, policy, device, source, unexpected)
¶
Construct and populate a validated v2 model under an explicit policy.
Source code in aimnet/models/base.py
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | |
load_legacy_jit(path, device='cpu')
¶
Load a legacy TorchScript model from a trusted .jpt source.
TorchScript is format-specific but is not a sandbox. Only load .jpt
files from sources whose code and provenance the caller trusts.
Source code in aimnet/models/base.py
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | |
load_model(path, device='cpu', *, model_import_paths=None, model_import_mode='extend')
¶
Load a v2 model or explicitly routed legacy .jpt model.
Files ending in .jpt (case-insensitive) are loaded with
:func:torch.jit.load and therefore must come from a trusted source.
Every other suffix is loaded exactly once with restricted
torch.load(weights_only=True).
Parameters¶
path : str
Path to a v2 .pt or trusted legacy .jpt model.
device : str
Device on which to load the model.
model_import_paths : Collection[str] | None
Python imports trusted when loading a v2 file. Entries are exact dotted
paths or namespaces ending in .*, such as
{"my_package.models.CustomModel", "my_package.layers.*"}.
model_import_mode : {"extend", "replace", "unsafe"}
extend adds model_import_paths to the default trusted paths;
replace requires a nonempty collection and uses only those paths.
unsafe cannot be combined with paths and permits arbitrary imported
constructors. No mode relaxes restricted deserialization or artifact
validation.
Returns¶
model : nn.Module The loaded model with weights. metadata : ModelMetadata Validated model metadata.
Use unsafe only for locally trusted artifacts. Legacy .jpt files
accept only model_import_paths=None and model_import_mode="extend".
Source code in aimnet/models/base.py
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | |
load_registry_model(path, device='cpu')
¶
Load a registry artifact with its immutable import policy.
Source code in aimnet/models/base.py
203 204 205 206 207 208 209 210 211 | |