Class BaseLogger
Callback that accumulates epoch averages of metrics. This callback is automatically applied to every Keras model.
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 BaseLogger : Callback, IDisposable
Constructors
| Improve this Doc View SourceBaseLogger(String[])
Initializes a new instance of the BaseLogger class.
Declaration
public BaseLogger(params string[] stateful_metrics)
Parameters
Type | Name | Description |
---|---|---|
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 in on_epoch_end. All others will be averaged in on_epoch_end. |
Implements
System.IDisposable