LostTech.TensorFlow : API Documentation

Type Progbar

Namespace tensorflow.keras.utils

Parent PythonObjectContainer

Interfaces IProgbar

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.

Public properties

double interval get; set;

object PythonObject get;

ISet<object> stateful_metrics get; set;

object target get; set;

string unit_name get; set;

int verbose get; set;

int width get; set;