Table of Contents

Class TrainingSpeedStats

Namespace
AiDotNet.Models
Assembly
AiDotNet.dll

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

TimeSpan

EstimatedTimeRemaining

Gets or sets the estimated time remaining.

public TimeSpan EstimatedTimeRemaining { get; set; }

Property Value

TimeSpan

IterationsCompleted

Gets or sets the number of iterations completed.

public int IterationsCompleted { get; set; }

Property Value

int

IterationsPerSecond

Gets or sets the average iterations per second.

public double IterationsPerSecond { get; set; }

Property Value

double

ProgressPercentage

Gets or sets the current progress percentage (0-100).

public double ProgressPercentage { get; set; }

Property Value

double

SecondsPerIteration

Gets or sets the average time per iteration in seconds.

public double SecondsPerIteration { get; set; }

Property Value

double

TotalIterations

Gets or sets the total number of iterations planned.

public int TotalIterations { get; set; }

Property Value

int