Source code for composer.core.algorithm

# Copyright 2021 MosaicML. All Rights Reserved.

"""Base class for algorithms that improve model's quality or efficiency."""

from __future__ import annotations

from abc import ABC, abstractmethod
from typing import TYPE_CHECKING, Optional

from composer.core.serializable import Serializable

if TYPE_CHECKING:
    from composer.core import Event, State
    from composer.loggers import Logger

__all__ = ["Algorithm"]


[docs]class Algorithm(Serializable, ABC): """Base class for algorithms. Algorithms are pieces of code which run at specific events (see :class:`~.event.Event`) in the training loop. Algorithms modify the trainer's :class:`~.state.State`, generally with the effect of improving the model's quality, or increasing the efficiency and throughput of the training loop. Algorithms must implement the following two methods: +----------------+-------------------------------------------------------------------------------+ | Method | Description | +================+===============================================================================+ | :func:`match` | returns whether the algorithm should be run given the current | | | :class:`~.event.Event` and :class:`~.state.State` | +----------------+-------------------------------------------------------------------------------+ | :func:`apply` | Executes the algorithm's code and makes an in-place change | | | to the :class:`~.state.State` | +----------------+-------------------------------------------------------------------------------+ """ @property def find_unused_parameters(self) -> bool: """Return True to indicate that the effect of this algorithm may cause some model parameters to be unused. Defaults to False. For example, it is used to tell :class:`torch.nn.parallel.DistributedDataParallel` (DDP) that some parameters will be frozen during training and hence it should not expect gradients from them. All algorithms which do any kind of parameter freezing should override this function to return True. .. note:: DeepSpeed integration with this function returing True is not tested. It may not work as expected. """ return False @property def backwards_create_graph(self) -> bool: """Return True to indicate that this algorithm requires a second derivative to be computed. Defaults to False. If it returns True, ``create_graph=True`` will be passed to :meth:`torch.Tensor.backward` which will result in the graph of the gradient also being constructed. This allows to compute second order derivative. """ return False
[docs] @abstractmethod def match(self, event: Event, state: State) -> bool: """Determines whether this algorithm should run given the current :class:`~.event.Event` and :class:`~.state.State`. Examples: To only run on a specific event (e.g., on :attr:`~.Event.BEFORE_LOSS`), override match as shown below: >>> class MyAlgorithm: ... def match(self, event, state): ... return event == Event.BEFORE_LOSS >>> MyAlgorithm().match(Event.BEFORE_LOSS, state) True To run based on some value of a :class:`~.state.State` attribute, override match as shown below: >>> class MyAlgorithm: ... def match(self, event, state): ... return state.timer.epoch > 30 >>> MyAlgorithm().match(Event.BEFORE_LOSS, state) False See :class:`~.state.State` for accessible attributes. Args: event (Event): The current event. state (State): The current state. Returns: bool: True if this algorithm should run now. """ raise NotImplementedError(f'implement match() required for {self.__class__.__name__}')
[docs] @abstractmethod def apply(self, event: Event, state: State, logger: Logger) -> Optional[int]: """Applies the algorithm to make an in-place change to the :class:`~.state.State`. Can optionally return an exit code to be stored in a :class:`~.engine.Trace` and this exit code is made accessible for debugging. Args: event (Event): The current event. state (State): The current state. logger (Logger): A logger to use for logging algorithm-specific metrics. Returns: int or None: exit code that will be stored in :class:`~.engine.Trace` and made accessible for debugging. """ raise NotImplementedError(f'implement apply() required for {self.__class__.__name__}')