Class ProgbarLogger
Callback that prints metrics to stdout.
Implements
System.IDisposable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Keras.Callbacks
Assembly: Keras.dll
Syntax
public class ProgbarLogger : Callback, IDisposable
Constructors
| Improve this Doc View SourceProgbarLogger(String, String[])
Initializes a new instance of the ProgbarLogger class.
Declaration
public ProgbarLogger(string count_mode = "samples", params string[] stateful_metrics)
Parameters
Type | Name | Description |
---|---|---|
System.String | count_mode | One of "steps" or "samples". Whether the progress bar should count samples seen or steps (batches) seen. |
System.String[] | 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). |
Implements
System.IDisposable