graph2mat.tools.lightning.models.mace.LitMACEMatrixModel

class graph2mat.tools.lightning.models.mace.LitMACEMatrixModel(root_dir: str = '.', basis_files: str | None = None, basis_table: BasisTableWithEdges | None = None, no_basis: dict | None = None, num_bessel: int = 10, num_polynomial_cutoff: int = 3, max_ell: int = 3, interaction_cls: Type[InteractionBlock] = mace.modules.blocks.RealAgnosticResidualInteractionBlock, interaction_cls_first: Type[InteractionBlock] = mace.modules.blocks.RealAgnosticResidualInteractionBlock, num_interactions: int = 2, hidden_irreps: Irreps | str = '20x0e+20x1o+20x2e', edge_hidden_irreps: Irreps | str = '4x0e+4x1o+4x2e', avg_num_neighbors: float = 1.0, correlation: int = 1, symmetric_matrix: bool = False, basis_grouping: Literal['point_type', 'basis_shape', 'max'] = 'point_type', preprocessing_nodes: Type[Module] | None = None, preprocessing_edges: Type[Module] | None = None, preprocessing_edges_reuse_nodes: bool = True, node_block_readout: Type[Module] = graph2mat.bindings.e3nn.modules.node_operations.E3nnSimpleNodeBlock, edge_block_readout: Type[Module] = graph2mat.bindings.e3nn.modules.edge_operations.E3nnSimpleEdgeBlock, readout_per_interaction: bool = False, optim_wdecay: float = 5e-07, optim_amsgrad: bool = True, optim_lr: float = 0.001, loss: Type[OrbitalMatrixMetric] = graph2mat.core.data.metrics.block_type_mse, initial_node_feats: str = 'OneHotZ', version: str = 'new')[source]

Bases: LitBasisMatrixModel

Wrapper to use MACEMatrix in pytorch_lightning.

Methods

configure_optimizers()

Choose what optimizers and learning-rate schedulers to use in your optimization.

Attributes

model

basis_table

model_kwargs

training

configure_optimizers()[source]

Choose what optimizers and learning-rate schedulers to use in your optimization. Normally you’d need one. But in the case of GANs or similar you might have multiple. Optimization with multiple optimizers only works in the manual optimization mode.

Returns:

Any of these 6 options.

  • Single optimizer.

  • List or Tuple of optimizers.

  • Two lists - The first list has multiple optimizers, and the second has multiple LR schedulers (or multiple lr_scheduler_config).

  • Dictionary, with an "optimizer" key, and (optionally) a "lr_scheduler" key whose value is a single LR scheduler or lr_scheduler_config.

  • None - Fit will run without any optimizer.

The lr_scheduler_config is a dictionary which contains the scheduler and its associated configuration. The default configuration is shown below.

lr_scheduler_config = {
    # REQUIRED: The scheduler instance
    "scheduler": lr_scheduler,
    # The unit of the scheduler's step size, could also be 'step'.
    # 'epoch' updates the scheduler on epoch end whereas 'step'
    # updates it after a optimizer update.
    "interval": "epoch",
    # How many epochs/steps should pass between calls to
    # `scheduler.step()`. 1 corresponds to updating the learning
    # rate after every epoch/step.
    "frequency": 1,
    # Metric to monitor for schedulers like `ReduceLROnPlateau`
    "monitor": "val_loss",
    # If set to `True`, will enforce that the value specified 'monitor'
    # is available when the scheduler is updated, thus stopping
    # training if not found. If set to `False`, it will only produce a warning
    "strict": True,
    # If using the `LearningRateMonitor` callback to monitor the
    # learning rate progress, this keyword can be used to specify
    # a custom logged name
    "name": None,
}

When there are schedulers in which the .step() method is conditioned on a value, such as the torch.optim.lr_scheduler.ReduceLROnPlateau scheduler, Lightning requires that the lr_scheduler_config contains the keyword "monitor" set to the metric name that the scheduler should be conditioned on.

Metrics can be made available to monitor by simply logging it using self.log('metric_to_track', metric_val) in your LightningModule.

Note

Some things to know:

  • Lightning calls .backward() and .step() automatically in case of automatic optimization.

  • If a learning rate scheduler is specified in configure_optimizers() with key "interval" (default “epoch”) in the scheduler configuration, Lightning will call the scheduler’s .step() method automatically in case of automatic optimization.

  • If you use 16-bit precision (precision=16), Lightning will automatically handle the optimizer.

  • If you use torch.optim.LBFGS, Lightning handles the closure function automatically for you.

  • If you use multiple optimizers, you will have to switch to ‘manual optimization’ mode and step them yourself.

  • If you need to control how often the optimizer steps, override the optimizer_step hook.

model: MACE