Class History
Callback that records events into a History object. This callback is automatically applied to every Keras model.The History object gets returned by the fit method of models.
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 History : Callback, IDisposable
Constructors
| Improve this Doc View SourceHistory()
Initializes a new instance of the History class.
Declaration
public History()
Properties
| Improve this Doc View SourceEpoch
Gets the epoch.
Declaration
public int[] Epoch { get; }
Property Value
Type | Description |
---|---|
System.Int32[] | The epoch. |
HistoryLogs
Gets the history logs.
Declaration
public double[] HistoryLogs { get; }
Property Value
Type | Description |
---|---|
System.Double[] | The history logs. |
Implements
System.IDisposable