Type Progbar
Namespace tensorflow.keras.utils
Parent PythonObjectContainer
Interfaces IProgbar
Displays a progress bar.
Methods
Properties
Public instance methods
object add_dyn(object n, object values)
void update(IEnumerable<object> current, IEnumerable<ValueTuple<object, object>> values)
Updates the progress bar.
Parameters
-
IEnumerable<object>
current - Index of current step.
-
IEnumerable<ValueTuple<object, object>>
values - List of tuples: `(name, value_for_last_step)`. If `name` is in `stateful_metrics`, `value_for_last_step` will be displayed as-is. Else, an average of the metric over time will be displayed.
void update(int current, IEnumerable<ValueTuple<object, object>> values)
Updates the progress bar.
Parameters
-
int
current - Index of current step.
-
IEnumerable<ValueTuple<object, object>>
values - List of tuples: `(name, value_for_last_step)`. If `name` is in `stateful_metrics`, `value_for_last_step` will be displayed as-is. Else, an average of the metric over time will be displayed.
void update(IGraphNodeBase current, IEnumerable<ValueTuple<object, object>> values)
Updates the progress bar.
Parameters
-
IGraphNodeBase
current - Index of current step.
-
IEnumerable<ValueTuple<object, object>>
values - List of tuples: `(name, value_for_last_step)`. If `name` is in `stateful_metrics`, `value_for_last_step` will be displayed as-is. Else, an average of the metric over time will be displayed.
void update(object current, IEnumerable<ValueTuple<object, object>> values)
Updates the progress bar.
Parameters
-
object
current - Index of current step.
-
IEnumerable<ValueTuple<object, object>>
values - List of tuples: `(name, value_for_last_step)`. If `name` is in `stateful_metrics`, `value_for_last_step` will be displayed as-is. Else, an average of the metric over time will be displayed.
Public static methods
Progbar NewDyn(object target, ImplicitContainer<T> width, ImplicitContainer<T> verbose, ImplicitContainer<T> interval, object stateful_metrics, ImplicitContainer<T> unit_name)
Initialize self. See help(type(self)) for accurate signature.