Callback classtf_keras.callbacks.Callback()
Abstract base class used to build new callbacks.
Callbacks can be passed to keras methods such as fit, evaluate, and
predict in order to hook into the various stages of the model training and
inference lifecycle.
To create a custom callback, subclass keras.callbacks.Callback and
override the method associated with the stage of interest. See the
Custom callback
for more information.
Example
>>> training_finished = False
>>> class MyCallback(tf.keras.callbacks.Callback):
... def on_train_end(self, logs=None):
... global training_finished
... training_finished = True
>>> model = tf.keras.Sequential([
... tf.keras.layers.Dense(1, input_shape=(1,))])
>>> model.compile(loss='mean_squared_error')
>>> model.fit(tf.constant([[1.0]]), tf.constant([[1.0]]),
... callbacks=[MyCallback()])
>>> assert training_finished == True
If you want to use Callback objects in a custom training loop:
callbacks.CallbackList
so they can all be called together.on_* methods at the appropriate
locations in your loop. Like this:Example
callbacks = tf.keras.callbacks.CallbackList([...])
callbacks.append(...)
callbacks.on_train_begin(...)
for epoch in range(EPOCHS):
callbacks.on_epoch_begin(epoch)
for i, data in dataset.enumerate():
callbacks.on_train_batch_begin(i)
batch_logs = model.train_step(data)
callbacks.on_train_batch_end(i, batch_logs)
epoch_logs = ...
callbacks.on_epoch_end(epoch, epoch_logs)
final_logs=...
callbacks.on_train_end(final_logs)
Attributes
keras.models.Model.
Reference of the model being trained.The logs dictionary that callback methods
take as argument will contain keys for quantities relevant to
the current batch or epoch (see method-specific docstrings).