Show / Hide Table of Contents

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 Source

TrainingEndEventArgs(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 Source

Duration

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.

| Improve this Doc View Source

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
  • Improve this Doc
  • View Source
Back to top Generated by DocFX