Class History
Inherits From: Callback
Defined in tensorflow/python/keras/callbacks.py
.
Callback that records events into a History
object.
This callback is automatically applied to
every Keras model. The History
object
gets returned by the fit
method of models.
__init__
__init__()
Initialize self. See help(type(self)) for accurate signature.
Methods
tf.keras.callbacks.History.on_batch_begin
on_batch_begin(
batch,
logs=None
)
tf.keras.callbacks.History.on_batch_end
on_batch_end(
batch,
logs=None
)
tf.keras.callbacks.History.on_epoch_begin
on_epoch_begin(
epoch,
logs=None
)
tf.keras.callbacks.History.on_epoch_end
on_epoch_end(
epoch,
logs=None
)
tf.keras.callbacks.History.on_train_batch_begin
on_train_batch_begin(
batch,
logs=None
)
tf.keras.callbacks.History.on_train_batch_end
on_train_batch_end(
batch,
logs=None
)
tf.keras.callbacks.History.on_train_begin
on_train_begin(logs=None)
tf.keras.callbacks.History.on_train_end
on_train_end(logs=None)
tf.keras.callbacks.History.set_model
set_model(model)
tf.keras.callbacks.History.set_params
set_params(params)