Container abstracting a list of callbacks.
tf.keras.callbacks.CallbackList(
    callbacks=None, add_history=False, add_progbar=False, model=None, **params
)
   
| Args | |
|---|---|
| callbacks | List of Callbackinstances. | 
| add_history | Whether a Historycallback should be added, if one does not already exist in thecallbackslist. | 
| add_progbar | Whether a ProgbarLoggercallback should be added, if one does not already exist in thecallbackslist. | 
| model | The Modelthese callbacks are used with. | 
| **params | If provided, parameters will be passed to each CallbackviaCallback.set_params. | 
append
append(
    callback
)
 on_batch_begin
on_batch_begin(
    batch, logs=None
)
 on_batch_end
on_batch_end(
    batch, logs=None
)
 on_epoch_begin
on_epoch_begin(
    epoch, logs=None
)
 Calls the on_epoch_begin methods of its callbacks.
This function should only be called during TRAIN mode.
| Args | |
|---|---|
| epoch | Integer, index of epoch. | 
| logs | Dict. Currently no data is passed to this argument for this method but that may change in the future. | 
on_epoch_end
on_epoch_end(
    epoch, logs=None
)
 Calls the on_epoch_end methods of its callbacks.
This function should only be called during TRAIN mode.
| Args | |
|---|---|
| epoch | Integer, index of epoch. | 
| logs | Dict, metric results for this training epoch, and for the validation epoch if validation is performed. Validation result keys are prefixed with val_. | 
on_predict_batch_begin
on_predict_batch_begin(
    batch, logs=None
)
 Calls the on_predict_batch_begin methods of its callbacks.
| Args | |
|---|---|
| batch | Integer, index of batch within the current epoch. | 
| logs | Dict, contains the return value of model.predict_step, it typically returns a dict with a key 'outputs' containing the model's outputs. | 
on_predict_batch_end
on_predict_batch_end(
    batch, logs=None
)
 Calls the on_predict_batch_end methods of its callbacks.
| Args | |
|---|---|
| batch | Integer, index of batch within the current epoch. | 
| logs | Dict. Aggregated metric results up until this batch. | 
on_predict_begin
on_predict_begin(
    logs=None
)
 Calls the 'on_predict_begin` methods of its callbacks.
| Args | |
|---|---|
| logs | Dict. Currently no data is passed to this argument for this method but that may change in the future. | 
on_predict_end
on_predict_end(
    logs=None
)
 Calls the on_predict_end methods of its callbacks.
| Args | |
|---|---|
| logs | Dict. Currently, no data is passed via this argument for this method, but that may change in the future. | 
on_test_batch_begin
on_test_batch_begin(
    batch, logs=None
)
 Calls the on_test_batch_begin methods of its callbacks.
| Args | |
|---|---|
| batch | Integer, index of batch within the current epoch. | 
| logs | Dict, contains the return value of model.test_step. Typically, the values of theModel's metrics are returned. Example:{'loss': 0.2, 'accuracy': 0.7}. | 
on_test_batch_end
on_test_batch_end(
    batch, logs=None
)
 Calls the on_test_batch_end methods of its callbacks.
| Args | |
|---|---|
| batch | Integer, index of batch within the current epoch. | 
| logs | Dict. Aggregated metric results up until this batch. | 
on_test_begin
on_test_begin(
    logs=None
)
 Calls the on_test_begin methods of its callbacks.
| Args | |
|---|---|
| logs | Dict. Currently no data is passed to this argument for this method but that may change in the future. | 
on_test_end
on_test_end(
    logs=None
)
 Calls the on_test_end methods of its callbacks.
| Args | |
|---|---|
| logs | Dict. Currently, no data is passed via this argument for this method, but that may change in the future. | 
on_train_batch_begin
on_train_batch_begin(
    batch, logs=None
)
 Calls the on_train_batch_begin methods of its callbacks.
| Args | |
|---|---|
| batch | Integer, index of batch within the current epoch. | 
| logs | Dict, contains the return value of model.train_step. Typically, the values of theModel's metrics are returned. Example:{'loss': 0.2, 'accuracy': 0.7}. | 
on_train_batch_end
on_train_batch_end(
    batch, logs=None
)
 Calls the on_train_batch_end methods of its callbacks.
| Args | |
|---|---|
| batch | Integer, index of batch within the current epoch. | 
| logs | Dict. Aggregated metric results up until this batch. | 
on_train_begin
on_train_begin(
    logs=None
)
 Calls the on_train_begin methods of its callbacks.
| Args | |
|---|---|
| logs | Dict. Currently, no data is passed via this argument for this method, but that may change in the future. | 
on_train_end
on_train_end(
    logs=None
)
 Calls the on_train_end methods of its callbacks.
| Args | |
|---|---|
| logs | Dict. Currently, no data is passed via this argument for this method, but that may change in the future. | 
set_model
set_model(
    model
)
 set_params
set_params(
    params
)
 __iter____iter__()
    © 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
    https://www.tensorflow.org/versions/r2.9/api_docs/python/tf/keras/callbacks/CallbackList