class documentation
class BaseCallback: (source)
Known subclasses: shamboflow.callbacks.EarlyStopping
, shamboflow.callbacks.ModelCheckpoint
, shamboflow.callbacks.ReduceLROnPlateau
Callback methods base class
CallBack methods are those methods which are called at the end of each epochs to perform certain tasks.
This is the base class for such callbacks. All callbacks need to inherit from this and implement the call method.
overridden in
shamboflow.callbacks.EarlyStopping
, shamboflow.callbacks.ModelCheckpoint
, shamboflow.callbacks.ReduceLROnPlateau
Undocumented
overridden in
shamboflow.callbacks.EarlyStopping
, shamboflow.callbacks.ModelCheckpoint
, shamboflow.callbacks.ReduceLROnPlateau
Method that runs after each epoch
Every subclass needs to implement this method