Class BatchStartEventArgs
Event triggered when batch training starts
Inheritance
System.Object
System.EventArgs
BatchStartEventArgs
Inherited Members
System.EventArgs.Empty
Namespace: SiaNet.Events
Assembly: SiaNet.dll
Syntax
public class BatchStartEventArgs : EventArgs
Constructors
| Improve this Doc View SourceBatchStartEventArgs(Int32, Int32)
Initializes a new instance of the BatchStartEventArgs class.
Declaration
public BatchStartEventArgs(int epoch, int batch)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | epoch | The current epoch number. |
System.Int32 | batch | The current batch number. |
Properties
| Improve this Doc View SourceBatch
Gets the current batch number.
Declaration
public int Batch { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The batch. |
Epoch
Gets the current epoch number.
Declaration
public int Epoch { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The epoch. |
See Also
System.EventArgs