mattertune.configs.recipes.noop

class mattertune.configs.recipes.noop.NoOpRecipeConfig(*, name='no-op')[source]

Example recipe that does nothing.

Parameters:

name (Literal['no-op'])

name: Literal['no-op']

Discriminator for the no-op recipe.

create_lightning_callback()[source]

Creates the PyTorch Lightning callback for this recipe, or returns None if no callback is needed.

Return type:

None

class mattertune.configs.recipes.noop.RecipeConfigBase[source]

Base configuration for recipes.

abstract create_lightning_callback()[source]

Creates the PyTorch Lightning callback for this recipe, or returns None if no callback is needed.

Return type:

Callback | None

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.