Class TrainingSpeedStats
Contains statistics about training speed and progress.
public class TrainingSpeedStats
- Inheritance
-
TrainingSpeedStats
- Inherited Members
Remarks
For Beginners: This tracks how fast your model is training and estimates how long until it's done.
Properties
ElapsedTime
Gets or sets the total elapsed time.
public TimeSpan ElapsedTime { get; set; }
Property Value
EstimatedTimeRemaining
Gets or sets the estimated time remaining.
public TimeSpan EstimatedTimeRemaining { get; set; }
Property Value
IterationsCompleted
Gets or sets the number of iterations completed.
public int IterationsCompleted { get; set; }
Property Value
IterationsPerSecond
Gets or sets the average iterations per second.
public double IterationsPerSecond { get; set; }
Property Value
ProgressPercentage
Gets or sets the current progress percentage (0-100).
public double ProgressPercentage { get; set; }
Property Value
SecondsPerIteration
Gets or sets the average time per iteration in seconds.
public double SecondsPerIteration { get; set; }
Property Value
TotalIterations
Gets or sets the total number of iterations planned.
public int TotalIterations { get; set; }