Callback
Base class used to build new callbacks.
NOTE: This class contains empty methods, inherit it and override if you need functionality.
Callback methods are called during training, evaluation, prediction phases on each batch, epoch, start and end of the specific phase.
Constructors
Functions
Called at the start of an epoch during training phase.
Called at the end of an epoch during training phase.
Called at the beginning of a batch during prediction phase.
Called at the end of a batch during prediction phase.
Called at the beginning of prediction.
Called at the end of prediction.
Called at the beginning of a batch during evaluation phase. Also called at the beginning of a validation batch during validation phase, if validation data is provided.
Called at the end of a batch during evaluation phase. Also called at the end of a validation batch during validation phase, if validation data is provided.
Called at the beginning of evaluation or validation.
Called at the beginning of a batch during training phase.
Called at the end of a batch during training phase.
Called at the beginning of training.
Called at the end of training. This method is empty. Extend this class to handle this event.