Structure RelaxationΒΆ

This recipe is used to test the performance of different models in performing structure relaxation.

(.venv) $ mlipx recipes relax --models mace-mpa-0,7net-0,7net-mf-ompa-mpa,orb-v2,orb-v3,mattersim,grace-2l-omat,chgnet,matpes-pbe,meta-uma-sm,mace-matpes-pbe-0,pet-mad --material-ids=mp-1143 --repro
(.venv) $ mlipx compare --glob "*StructureOptimization"

Note

If you relax a non-periodic system and your model yields a stress tensor of [inf, inf, inf, inf, inf, inf] you have to add the --convert-nan flag to the mlipx compare or zndraw command to convert them to None.

This recipe uses the following Nodes together with your provided model in the models.py file:

Content of main.py
import mlipx
import zntrack

from models import MODELS

project = zntrack.Project()

frames = []

with project.group("initialize"):
    for material_id in ['mp-1143']:
        data = mlipx.MPRester(search_kwargs={"material_ids": [material_id]})
        frames.append(mlipx.Rattle(data=data.frames, stdev=0.1))



for model_name, model in MODELS.items():
    for idx, data in enumerate(frames):
        with project.group(model_name, str(idx)):
            geom_opt = mlipx.StructureOptimization(data=data.frames, model=model, fmax=0.1)

project.build()
Content of models.py
import dataclasses

import mlipx
from mlipx.nodes.generic_ase import Device
from ase.calculators.calculator import Calculator

ALL_MODELS = {}

# https://github.com/ACEsuit/mace
ALL_MODELS["mace-mpa-0"] = mlipx.GenericASECalculator(
    module="mace.calculators",
    class_name="mace_mp",
    device="auto",
    kwargs={"model": "../../models/mace-mpa-0-medium.model"}
    # MLIPX-hub model path, adjust as needed
)
# https://github.com/ACEsuit/mace
ALL_MODELS["mace-matpes-pbe-0"] = mlipx.GenericASECalculator(
    module="mace.calculators",
    class_name="mace_mp",
    device="auto",
    kwargs={"model": "../../models/mace-matpes-pbe-omat-ft.model"}
    # MLIPX-hub model path, adjust as needed
)
# https://github.com/MDIL-SNU/SevenNet
ALL_MODELS["7net-0"] = mlipx.GenericASECalculator(
    module="sevenn.sevennet_calculator",
    class_name="SevenNetCalculator",
    device="auto",
    kwargs={"model": "7net-0"}
)
ALL_MODELS["7net-mf-ompa-mpa"] = mlipx.GenericASECalculator(
    module="sevenn.sevennet_calculator",
    class_name="SevenNetCalculator",
    device="auto",
    kwargs={"model": "7net-mf-ompa", "modal": "mpa"}
)

# https://github.com/orbital-materials/orb-models
@dataclasses.dataclass
class OrbCalc:
    name: str
    device: Device | None = None
    kwargs: dict = dataclasses.field(default_factory=dict)

    def get_calculator(self, **kwargs):
        from orb_models.forcefield import pretrained
        from orb_models.forcefield.calculator import ORBCalculator

        method = getattr(pretrained, self.name)
        if self.device is None:
            orbff = method(**self.kwargs)
            calc = ORBCalculator(orbff, **self.kwargs)
        elif self.device == Device.AUTO:
            orbff = method(device=Device.resolve_auto(), **self.kwargs)
            calc = ORBCalculator(orbff, device=Device.resolve_auto(), **self.kwargs)
        else:
            orbff = method(device=self.device, **self.kwargs)
            calc = ORBCalculator(orbff, device=self.device, **self.kwargs)
        return calc

    @property
    def available(self) -> bool:
        try:
            from orb_models.forcefield import pretrained
            from orb_models.forcefield.calculator import ORBCalculator
            return True
        except ImportError:
            return False

ALL_MODELS["orb-v2"] = OrbCalc(
    name="orb_v2",
    device="auto"
)
ALL_MODELS["orb-v3"] = OrbCalc(
    name="orb_v3_conservative_inf_omat",
    device="auto"
)

# https://github.com/CederGroupHub/chgnet
ALL_MODELS["chgnet"] = mlipx.GenericASECalculator(
    module="chgnet.model",
    class_name="CHGNetCalculator",
)
# https://github.com/microsoft/mattersim
ALL_MODELS["mattersim"] = mlipx.GenericASECalculator(
    module="mattersim.forcefield",
    class_name="MatterSimCalculator",
    device="auto",
)
# https://www.faccts.de/orca/
ALL_MODELS["orca"] = mlipx.OrcaSinglePoint(
    orcasimpleinput= "PBE def2-TZVP TightSCF EnGrad",
    orcablocks ="%pal nprocs 8 end",
    orca_shell="",
)

# https://gracemaker.readthedocs.io/en/latest/gracemaker/foundation/
ALL_MODELS["grace-2l-omat"] = mlipx.GenericASECalculator(
    module="tensorpotential.calculator",
    class_name="TPCalculator",
    device=None,
    kwargs={
        "model": "../../models/GRACE-2L-OMAT",
    },
    # MLIPX-hub model path, adjust as needed
)

@dataclasses.dataclass
class MatglModel:
    path: str

    def get_calculator(self, **kwargs) -> Calculator:
        import matgl
        from matgl.ext.ase import PESCalculator

        potential = matgl.load_model(self.path)
        return PESCalculator(potential)
    
    def available(self) -> bool:
        try:
            import matgl
            from matgl.ext.ase import PESCalculator
            return True
        except ImportError:
            return False

ALL_MODELS["matpes-pbe"] = MatglModel(
    path="../../models/TensorNet-MatPES-PBE-v2025.1-PES"
    # MLIPX-hub model path, adjust as needed
)

@dataclasses.dataclass
class FairchemModel:
    path: str
    task_name: str = "oc20"
    device: str = "auto"

    def get_calculator(self, **kwargs) -> Calculator:
        from fairchem.core import pretrained_mlip, FAIRChemCalculator
        from fairchem.core.units.mlip_unit import load_predict_unit
        device = Device.resolve_auto() if self.device == "auto" else self.device
        predictor = load_predict_unit(self.path, device=device)
        return FAIRChemCalculator(predictor, task_name=self.task_name)

    def available(self) -> bool:
        try:
            import fairchem
            from fairchem.core import FAIRChemCalculator
            return True
        except ImportError:
            return False

ALL_MODELS["meta-uma-sm"] = FairchemModel(
    path="../../models/meta-uam.pt",
    task_name="oc20"
    # MLIPX-hub model path, adjust as needed
)

ALL_MODELS["pet-mad"] = mlipx.GenericASECalculator(
    module="pet_mad.calculator",
    class_name="PETMADCalculator",
    kwargs={"checkpoint_path": "../../models/pet-mad-latest.ckpt"},
    # MLIPX-hub model path, adjust as needed
)
# OPTIONAL
# ========
# If you have custom property names you can use the UpdatedFramesCalc
# to set the energy, force and isolated_energies keys mlipx expects.

# REFERENCE = mlipx.UpdateFramesCalc(
#     results_mapping={"energy": "DFT_ENERGY", "forces": "DFT_FORCES"},
#     info_mapping={mlipx.abc.ASEKeys.isolated_energies.value: "isol_ene"},
# )

# ============================================================
# THE SELECTED MODELS!
# ONLY THESE MODELS WILL BE USED IN THE RECIPE
# ============================================================
MODELS = {
    "mace-mpa-0": ALL_MODELS["mace-mpa-0"],
    "7net-0": ALL_MODELS["7net-0"],
    "7net-mf-ompa-mpa": ALL_MODELS["7net-mf-ompa-mpa"],
    "orb-v2": ALL_MODELS["orb-v2"],
    "orb-v3": ALL_MODELS["orb-v3"],
    "mattersim": ALL_MODELS["mattersim"],
    "grace-2l-omat": ALL_MODELS["grace-2l-omat"],
    "chgnet": ALL_MODELS["chgnet"],
    "matpes-pbe": ALL_MODELS["matpes-pbe"],
    "meta-uma-sm": ALL_MODELS["meta-uma-sm"],
    "mace-matpes-pbe-0": ALL_MODELS["mace-matpes-pbe-0"],
    "pet-mad": ALL_MODELS["pet-mad"],
}