mattertune.configs.backbones
- class mattertune.configs.backbones.CutoffsConfig(*, main, aeaint, qint, aint)[source]
- Parameters:
main (float)
aeaint (float)
qint (float)
aint (float)
- main: float
- aeaint: float
- qint: float
- aint: float
- class mattertune.configs.backbones.EqV2BackboneConfig(*, reset_backbone=False, freeze_backbone=False, reset_output_heads=True, use_pretrained_normalizers=False, output_internal_features=False, properties, optimizer, lr_scheduler=None, ignore_gpu_batch_transform_error=True, normalizers={}, name='eqV2', checkpoint_path, atoms_to_graph)[source]
- Parameters:
reset_backbone (bool)
freeze_backbone (bool)
reset_output_heads (bool)
use_pretrained_normalizers (bool)
output_internal_features (bool)
properties (Sequence[PropertyConfig])
optimizer (OptimizerConfig)
lr_scheduler (LRSchedulerConfig | None)
ignore_gpu_batch_transform_error (bool)
normalizers (Mapping[str, Sequence[NormalizerConfig]])
name (Literal['eqV2'])
checkpoint_path (Path | CachedPath)
atoms_to_graph (FAIRChemAtomsToGraphSystemConfig)
- name: Literal['eqV2']
The type of the backbone.
- checkpoint_path: Path | CE.CachedPath
The path to the checkpoint to load.
- atoms_to_graph: FAIRChemAtomsToGraphSystemConfig
Configuration for converting ASE Atoms to a graph.
- classmethod ensure_dependencies()[source]
Ensure that all dependencies are installed.
This method should raise an exception if any dependencies are missing, with a message indicating which dependencies are missing and how to install them.
- reset_backbone: bool
Whether to reset the backbone of the model when creating the model.
- freeze_backbone: bool
Whether to freeze the backbone during training.
- reset_output_heads: bool
Whether to reset the output heads of the model when creating the model.
- use_pretrained_normalizers: bool
Whether to use the pretrained normalizers.
- output_internal_features: bool
If set to True, the model will output the internal features of the backbone model instead of the predicted properties.
- properties: Sequence[PropertyConfig]
Properties to predict.
- optimizer: OptimizerConfig
Optimizer.
- lr_scheduler: LRSchedulerConfig | None
Learning Rate Scheduler
- ignore_gpu_batch_transform_error: bool
Whether to ignore data processing errors during training.
- normalizers: Mapping[str, Sequence[NormalizerConfig]]
Normalizers for the properties.
Any property can be associated with multiple normalizers. This is useful for cases where we want to normalize the same property in different ways. For example, we may want to normalize the energy by subtracting the atomic reference energies, as well as by mean and standard deviation normalization.
The normalizers are applied in the order they are defined in the list.
- class mattertune.configs.backbones.FAIRChemAtomsToGraphSystemConfig(*, radius, max_num_neighbors)[source]
Configuration for converting ASE Atoms to a graph for the FAIRChem model.
- Parameters:
radius (float)
max_num_neighbors (int)
- radius: float
The radius for edge construction.
- max_num_neighbors: int
The maximum number of neighbours each node can send messages to.
- class mattertune.configs.backbones.FinetuneModuleBaseConfig(*, reset_backbone=False, freeze_backbone=False, reset_output_heads=True, use_pretrained_normalizers=False, output_internal_features=False, properties, optimizer, lr_scheduler=None, ignore_gpu_batch_transform_error=True, normalizers={})[source]
- Parameters:
reset_backbone (bool)
freeze_backbone (bool)
reset_output_heads (bool)
use_pretrained_normalizers (bool)
output_internal_features (bool)
properties (Sequence[PropertyConfig])
optimizer (OptimizerConfig)
lr_scheduler (LRSchedulerConfig | None)
ignore_gpu_batch_transform_error (bool)
normalizers (Mapping[str, Sequence[NormalizerConfig]])
- reset_backbone: bool
Whether to reset the backbone of the model when creating the model.
- freeze_backbone: bool
Whether to freeze the backbone during training.
- reset_output_heads: bool
Whether to reset the output heads of the model when creating the model.
- use_pretrained_normalizers: bool
Whether to use the pretrained normalizers.
- output_internal_features: bool
If set to True, the model will output the internal features of the backbone model instead of the predicted properties.
- properties: Sequence[PropertyConfig]
Properties to predict.
- optimizer: OptimizerConfig
Optimizer.
- lr_scheduler: LRSchedulerConfig | None
Learning Rate Scheduler
- ignore_gpu_batch_transform_error: bool
Whether to ignore data processing errors during training.
- normalizers: Mapping[str, Sequence[NormalizerConfig]]
Normalizers for the properties.
Any property can be associated with multiple normalizers. This is useful for cases where we want to normalize the same property in different ways. For example, we may want to normalize the energy by subtracting the atomic reference energies, as well as by mean and standard deviation normalization.
The normalizers are applied in the order they are defined in the list.
- abstract classmethod ensure_dependencies()[source]
Ensure that all dependencies are installed.
This method should raise an exception if any dependencies are missing, with a message indicating which dependencies are missing and how to install them.
- class mattertune.configs.backbones.JMPBackboneConfig(*, reset_backbone=False, freeze_backbone=False, reset_output_heads=True, use_pretrained_normalizers=False, output_internal_features=False, properties, optimizer, lr_scheduler=None, ignore_gpu_batch_transform_error=True, normalizers={}, name='jmp', pretrained_model, graph_computer)[source]
- Parameters:
reset_backbone (bool)
freeze_backbone (bool)
reset_output_heads (bool)
use_pretrained_normalizers (bool)
output_internal_features (bool)
properties (Sequence[PropertyConfig])
optimizer (OptimizerConfig)
lr_scheduler (LRSchedulerConfig | None)
ignore_gpu_batch_transform_error (bool)
normalizers (Mapping[str, Sequence[NormalizerConfig]])
name (Literal['jmp'])
pretrained_model (str)
graph_computer (JMPGraphComputerConfig)
- name: Literal['jmp']
The type of the backbone.
- pretrained_model: str
pretrained model name
- graph_computer: JMPGraphComputerConfig
The configuration for the graph computer.
- classmethod ensure_dependencies()[source]
Ensure that all dependencies are installed.
This method should raise an exception if any dependencies are missing, with a message indicating which dependencies are missing and how to install them.
- reset_backbone: bool
Whether to reset the backbone of the model when creating the model.
- freeze_backbone: bool
Whether to freeze the backbone during training.
- reset_output_heads: bool
Whether to reset the output heads of the model when creating the model.
- use_pretrained_normalizers: bool
Whether to use the pretrained normalizers.
- output_internal_features: bool
If set to True, the model will output the internal features of the backbone model instead of the predicted properties.
- properties: Sequence[PropertyConfig]
Properties to predict.
- optimizer: OptimizerConfig
Optimizer.
- lr_scheduler: LRSchedulerConfig | None
Learning Rate Scheduler
- ignore_gpu_batch_transform_error: bool
Whether to ignore data processing errors during training.
- normalizers: Mapping[str, Sequence[NormalizerConfig]]
Normalizers for the properties.
Any property can be associated with multiple normalizers. This is useful for cases where we want to normalize the same property in different ways. For example, we may want to normalize the energy by subtracting the atomic reference energies, as well as by mean and standard deviation normalization.
The normalizers are applied in the order they are defined in the list.
- class mattertune.configs.backbones.JMPGraphComputerConfig(*, pbc, cutoffs=CutoffsConfig(main=12.0, aeaint=12.0, qint=12.0, aint=12.0), max_neighbors=MaxNeighborsConfig(main=30, aeaint=20, qint=8, aint=1000), per_graph_radius_graph=False)[source]
- Parameters:
pbc (bool)
cutoffs (CutoffsConfig)
max_neighbors (MaxNeighborsConfig)
per_graph_radius_graph (bool)
- pbc: bool
Whether to use periodic boundary conditions.
- cutoffs: CutoffsConfig
The cutoff for the radius graph.
- max_neighbors: MaxNeighborsConfig
The maximum number of neighbors for the radius graph.
- per_graph_radius_graph: bool
Whether to compute the radius graph per graph.
- class mattertune.configs.backbones.M3GNetBackboneConfig(*, reset_backbone=False, freeze_backbone=False, reset_output_heads=True, use_pretrained_normalizers=False, output_internal_features=False, properties, optimizer, lr_scheduler=None, ignore_gpu_batch_transform_error=True, normalizers={}, name='m3gnet', ckpt_path, graph_computer)[source]
- Parameters:
reset_backbone (bool)
freeze_backbone (bool)
reset_output_heads (bool)
use_pretrained_normalizers (bool)
output_internal_features (bool)
properties (Sequence[PropertyConfig])
optimizer (OptimizerConfig)
lr_scheduler (LRSchedulerConfig | None)
ignore_gpu_batch_transform_error (bool)
normalizers (Mapping[str, Sequence[NormalizerConfig]])
name (Literal['m3gnet'])
ckpt_path (str | Path)
graph_computer (M3GNetGraphComputerConfig)
- name: Literal['m3gnet']
The type of the backbone.
- ckpt_path: str | Path
The path to the pre-trained model checkpoint.
- graph_computer: M3GNetGraphComputerConfig
Configuration for the graph computer.
- reset_backbone: bool
Whether to reset the backbone of the model when creating the model.
- freeze_backbone: bool
Whether to freeze the backbone during training.
- reset_output_heads: bool
Whether to reset the output heads of the model when creating the model.
- use_pretrained_normalizers: bool
Whether to use the pretrained normalizers.
- output_internal_features: bool
If set to True, the model will output the internal features of the backbone model instead of the predicted properties.
- properties: Sequence[PropertyConfig]
Properties to predict.
- optimizer: OptimizerConfig
Optimizer.
- lr_scheduler: LRSchedulerConfig | None
Learning Rate Scheduler
- ignore_gpu_batch_transform_error: bool
Whether to ignore data processing errors during training.
- normalizers: Mapping[str, Sequence[NormalizerConfig]]
Normalizers for the properties.
Any property can be associated with multiple normalizers. This is useful for cases where we want to normalize the same property in different ways. For example, we may want to normalize the energy by subtracting the atomic reference energies, as well as by mean and standard deviation normalization.
The normalizers are applied in the order they are defined in the list.
- class mattertune.configs.backbones.M3GNetGraphComputerConfig(*, element_types=<factory>, cutoff=None, threebody_cutoff=None, pre_compute_line_graph=False, graph_labels=None)[source]
Configuration for initialize a MatGL Atoms2Graph Convertor.
- Parameters:
element_types (tuple[str, ...])
cutoff (float | None)
threebody_cutoff (float | None)
pre_compute_line_graph (bool)
graph_labels (list[int | float] | None)
- element_types: tuple[str, ...]
The element types to consider, default is all elements.
- cutoff: float | None
The cutoff distance for the neighbor list. If None, the cutoff is loaded from the checkpoint.
- threebody_cutoff: float | None
The cutoff distance for the three-body interactions. If None, the cutoff is loaded from the checkpoint.
- pre_compute_line_graph: bool
Whether to pre-compute the line graph for three-body interactions in data preparation.
- graph_labels: list[int | float] | None
The graph labels to consider, default is None.
- class mattertune.configs.backbones.MatterSimBackboneConfig(*, reset_backbone=False, freeze_backbone=False, reset_output_heads=True, use_pretrained_normalizers=False, output_internal_features=False, properties, optimizer, lr_scheduler=None, ignore_gpu_batch_transform_error=True, normalizers={}, name='mattersim', pretrained_model, model_type='m3gnet', graph_convertor)[source]
- Parameters:
reset_backbone (bool)
freeze_backbone (bool)
reset_output_heads (bool)
use_pretrained_normalizers (bool)
output_internal_features (bool)
properties (Sequence[PropertyConfig])
optimizer (OptimizerConfig)
lr_scheduler (LRSchedulerConfig | None)
ignore_gpu_batch_transform_error (bool)
normalizers (Mapping[str, Sequence[NormalizerConfig]])
name (Literal['mattersim'])
pretrained_model (str)
model_type (Literal['m3gnet', 'graphormer'])
graph_convertor (MatterSimGraphConvertorConfig | dict[str, Any])
- name: Literal['mattersim']
The type of the backbone.
- pretrained_model: str
The name of the pretrained model to load. MatterSim-v1.0.0-1M: A mini version of the m3gnet that is faster to run. MatterSim-v1.0.0-5M: A larger version of the m3gnet that is more accurate.
- model_type: Literal['m3gnet', 'graphormer']
- graph_convertor: MatterSimGraphConvertorConfig | dict[str, Any]
Configuration for the graph converter.
- classmethod ensure_dependencies()[source]
Ensure that all dependencies are installed.
This method should raise an exception if any dependencies are missing, with a message indicating which dependencies are missing and how to install them.
- reset_backbone: bool
Whether to reset the backbone of the model when creating the model.
- freeze_backbone: bool
Whether to freeze the backbone during training.
- reset_output_heads: bool
Whether to reset the output heads of the model when creating the model.
- use_pretrained_normalizers: bool
Whether to use the pretrained normalizers.
- output_internal_features: bool
If set to True, the model will output the internal features of the backbone model instead of the predicted properties.
- properties: Sequence[PropertyConfig]
Properties to predict.
- optimizer: OptimizerConfig
Optimizer.
- lr_scheduler: LRSchedulerConfig | None
Learning Rate Scheduler
- ignore_gpu_batch_transform_error: bool
Whether to ignore data processing errors during training.
- normalizers: Mapping[str, Sequence[NormalizerConfig]]
Normalizers for the properties.
Any property can be associated with multiple normalizers. This is useful for cases where we want to normalize the same property in different ways. For example, we may want to normalize the energy by subtracting the atomic reference energies, as well as by mean and standard deviation normalization.
The normalizers are applied in the order they are defined in the list.
- class mattertune.configs.backbones.MatterSimGraphConvertorConfig(*, twobody_cutoff=5.0, has_threebody=True, threebody_cutoff=4.0)[source]
Configuration for the graph converter used in the MatterSim backbone.
- Parameters:
twobody_cutoff (float)
has_threebody (bool)
threebody_cutoff (float)
- twobody_cutoff: float
The cutoff distance for the two-body interactions.
- has_threebody: bool
Whether to include three-body interactions.
- threebody_cutoff: float
The cutoff distance for the three-body interactions.
- class mattertune.configs.backbones.MaxNeighborsConfig(*, main, aeaint, qint, aint)[source]
- Parameters:
main (int)
aeaint (int)
qint (int)
aint (int)
- main: int
- aeaint: int
- qint: int
- aint: int
- class mattertune.configs.backbones.ORBBackboneConfig(*, reset_backbone=False, freeze_backbone=False, reset_output_heads=True, use_pretrained_normalizers=False, output_internal_features=False, properties, optimizer, lr_scheduler=None, ignore_gpu_batch_transform_error=True, normalizers={}, name='orb', pretrained_model, system=ORBSystemConfig(radius=10.0, max_num_neighbors=20))[source]
- Parameters:
reset_backbone (bool)
freeze_backbone (bool)
reset_output_heads (bool)
use_pretrained_normalizers (bool)
output_internal_features (bool)
properties (Sequence[PropertyConfig])
optimizer (OptimizerConfig)
lr_scheduler (LRSchedulerConfig | None)
ignore_gpu_batch_transform_error (bool)
normalizers (Mapping[str, Sequence[NormalizerConfig]])
name (Literal['orb'])
pretrained_model (str)
system (ORBSystemConfig)
- name: Literal['orb']
The type of the backbone.
- pretrained_model: str
The name of the pretrained model to load.
- system: ORBSystemConfig
The system configuration, controlling how to featurize a system of atoms.
- classmethod ensure_dependencies()[source]
Ensure that all dependencies are installed.
This method should raise an exception if any dependencies are missing, with a message indicating which dependencies are missing and how to install them.
- reset_backbone: bool
Whether to reset the backbone of the model when creating the model.
- freeze_backbone: bool
Whether to freeze the backbone during training.
- reset_output_heads: bool
Whether to reset the output heads of the model when creating the model.
- use_pretrained_normalizers: bool
Whether to use the pretrained normalizers.
- output_internal_features: bool
If set to True, the model will output the internal features of the backbone model instead of the predicted properties.
- properties: Sequence[PropertyConfig]
Properties to predict.
- optimizer: OptimizerConfig
Optimizer.
- lr_scheduler: LRSchedulerConfig | None
Learning Rate Scheduler
- ignore_gpu_batch_transform_error: bool
Whether to ignore data processing errors during training.
- normalizers: Mapping[str, Sequence[NormalizerConfig]]
Normalizers for the properties.
Any property can be associated with multiple normalizers. This is useful for cases where we want to normalize the same property in different ways. For example, we may want to normalize the energy by subtracting the atomic reference energies, as well as by mean and standard deviation normalization.
The normalizers are applied in the order they are defined in the list.
- class mattertune.configs.backbones.ORBSystemConfig(*, radius, max_num_neighbors)[source]
Config controlling how to featurize a system of atoms.
- Parameters:
radius (float)
max_num_neighbors (int)
- radius: float
The radius for edge construction.
- max_num_neighbors: int
The maximum number of neighbours each node can send messages to.
Modules