Class TrainingEndEventArgs
Event triggered when the completed model training ends
Inheritance
System.Object
System.EventArgs
TrainingEndEventArgs
Inherited Members
System.EventArgs.Empty
Namespace: SiaNet.Events
Assembly: SiaNet.dll
Syntax
public class TrainingEndEventArgs : EventArgs
Constructors
| Improve this Doc View SourceTrainingEndEventArgs(History, Int64)
Initializes a new instance of the TrainingEndEventArgs class.
Declaration
public TrainingEndEventArgs(History history, long duration)
Parameters
Type | Name | Description |
---|---|---|
History | history | The training history with all epoch losses and metrics for both train and validation dataset. |
System.Int64 | duration | The total time taken (in millisecond) to finish the model training. |
Properties
| Improve this Doc View SourceDuration
Gets the total time taken (in millisecond) to finish the model training.
Declaration
public long Duration { get; }
Property Value
Type | Description |
---|---|
System.Int64 | The duration. |
History
Gets the training history with all epoch losses and metrics for both train and validation dataset.
Declaration
public History History { get; }
Property Value
Type | Description |
---|---|
History | The history. |
See Also
System.EventArgs