mattertune.wrappers.ase_calculator

Classes

MatterTuneCalculator(property_predictor)

MatterTuneIntenseCalculator(model, device)

A faster version of the MatterTuneCalculator that uses the predict_step method directly without creating a trainer.

class mattertune.wrappers.ase_calculator.MatterTuneCalculator(property_predictor)[source]
Parameters:

property_predictor (MatterTunePropertyPredictor)

__init__(property_predictor)[source]

Basic calculator implementation.

restart: str

Prefix for restart file. May contain a directory. Default is None: don’t restart.

ignore_bad_restart_file: bool

Deprecated, please do not use. Passing more than one positional argument to Calculator() is deprecated and will stop working in the future. Ignore broken or missing restart file. By default, it is an error if the restart file is missing or broken.

directory: str or PurePath

Working directory in which to read and write files and perform calculations.

label: str

Name used for all files. Not supported by all calculators. May contain a directory, but please use the directory parameter for that instead.

atoms: Atoms object

Optional Atoms object to which the calculator will be attached. When restarting, atoms will get its positions and unit-cell updated from file.

Parameters:

property_predictor (MatterTunePropertyPredictor)

calculate(atoms=None, properties=None, system_changes=None)[source]

Calculate properties for the given atoms object using the MatterTune property predictor. This method implements the calculation of properties like energy, forces, etc. for an ASE Atoms object using the underlying MatterTune property predictor. It converts between ASE and MatterTune property names and handles proper type conversions of the predicted values.

Parameters:
  • atoms (Atoms | None, optional) – ASE Atoms object to calculate properties for. If None, uses previously set atoms. Defaults to None.

  • properties (list[str] | None, optional) – List of properties to calculate. If None, calculates all implemented properties. Defaults to None.

  • system_changes (list[str] | None, optional) – List of changes made to the system since last calculation. Used by ASE for caching. Defaults to None.

Notes

  • The method first ensures atoms and property names are properly set

  • Makes predictions using the MatterTune property predictor

  • Converts predictions from PyTorch tensors to appropriate numpy types

  • Maps MatterTune property names to ASE calculator property names

  • Stores results in the calculator’s results dictionary

Raises:

AssertionError – If atoms is not set properly or if predictions are not in expected format

Parameters:
  • atoms (Atoms | None)

  • properties (list[str] | None)

  • system_changes (list[str] | None)

class mattertune.wrappers.ase_calculator.MatterTuneIntenseCalculator(model, device)[source]

A faster version of the MatterTuneCalculator that uses the predict_step method directly without creating a trainer.

Parameters:
__init__(model, device)[source]

Basic calculator implementation.

restart: str

Prefix for restart file. May contain a directory. Default is None: don’t restart.

ignore_bad_restart_file: bool

Deprecated, please do not use. Passing more than one positional argument to Calculator() is deprecated and will stop working in the future. Ignore broken or missing restart file. By default, it is an error if the restart file is missing or broken.

directory: str or PurePath

Working directory in which to read and write files and perform calculations.

label: str

Name used for all files. Not supported by all calculators. May contain a directory, but please use the directory parameter for that instead.

atoms: Atoms object

Optional Atoms object to which the calculator will be attached. When restarting, atoms will get its positions and unit-cell updated from file.

Parameters:
calculate(atoms=None, properties=None, system_changes=None)[source]

Do the calculation.

properties: list of str

List of what needs to be calculated. Can be any combination of ‘energy’, ‘forces’, ‘stress’, ‘dipole’, ‘charges’, ‘magmom’ and ‘magmoms’.

system_changes: list of str

List of what has changed since last calculation. Can be any combination of these six: ‘positions’, ‘numbers’, ‘cell’, ‘pbc’, ‘initial_charges’ and ‘initial_magmoms’.

Subclasses need to implement this, but can ignore properties and system_changes if they want. Calculated properties should be inserted into results dictionary like shown in this dummy example:

self.results = {'energy': 0.0,
                'forces': np.zeros((len(atoms), 3)),
                'stress': np.zeros(6),
                'dipole': np.zeros(3),
                'charges': np.zeros(len(atoms)),
                'magmom': 0.0,
                'magmoms': np.zeros(len(atoms))}

The subclass implementation should first call this implementation to set the atoms attribute and create any missing directories.

Parameters:
  • atoms (Atoms | None)

  • properties (list[str] | None)

  • system_changes (list[str] | None)