ProgbarLogger
Inherits From: Callback
Defined in tensorflow/python/keras/_impl/keras/callbacks.py.
Callback that prints metrics to stdout.
count_mode: One of "steps" or "samples". Whether the progress bar should count samples seen or steps (batches) seen.stateful_metrics: Iterable of string names of metrics that should not be averaged over an epoch. Metrics in this list will be logged as-is. All others will be averaged over time (e.g. loss, etc).ValueError: In case of invalid count_mode.__init____init__(
count_mode='samples',
stateful_metrics=None
)
Initialize self. See help(type(self)) for accurate signature.
on_batch_beginon_batch_begin(
batch,
logs=None
)
on_batch_endon_batch_end(
batch,
logs=None
)
on_epoch_beginon_epoch_begin(
epoch,
logs=None
)
on_epoch_endon_epoch_end(
epoch,
logs=None
)
on_train_beginon_train_begin(logs=None)
on_train_endon_train_end(logs=None)
set_modelset_model(model)
set_paramsset_params(params)
© 2018 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/keras/callbacks/ProgbarLogger