Shortcuts

Source code for tomopt.optimisation.callbacks.cyclic_callbacks

from typing import List

from .callback import Callback

r"""
Provides callbacks designed to act in cycles over a number of epochs, e.g. to affect learning rates.
"""

__all__: List[str] = ["CyclicCallback"]


[docs]class CyclicCallback(Callback): pass

Docs

Access comprehensive developer and user documentation for TomOpt

View Docs

Tutorials

Get tutorials for beginner and advanced researchers demonstrating many of the features of TomOpt

View Tutorials