ray.tune.logger.LoggerCallback#
- class ray.tune.logger.LoggerCallback[source]#
Bases:
Callback
Base class for experiment-level logger callbacks
This base class defines a general interface for logging events, like trial starts, restores, ends, checkpoint saves, and receiving trial results.
Callbacks implementing this interface should make sure that logging utilities are cleaned up properly on trial termination, i.e. when
log_trial_end
is received. This includes e.g. closing files.Methods
Get the state of the callback.
Handle logging when a trial ends.
Handle logging when a trial restores.
Handle logging when a trial reports a result.
Handle logging when a trial saves a checkpoint.
Handle logging when a trial starts.
Called after a trial saved a checkpoint with Tune.
Called after experiment is over and all trials have concluded.
Called at the start of each tuning loop step.
Called at the end of each tuning loop step.
Called after a trial instance failed (errored) but the trial is scheduled for retry.
Set the state of the callback.
Called once at the very beginning of training.