Table of Contents

Class CurriculumProgressionEntry<T>

Namespace
AiDotNet.CurriculumLearning.Results
Assembly
AiDotNet.dll

Entry in the curriculum progression history.

public class CurriculumProgressionEntry<T>

Type Parameters

T

The numeric type.

Inheritance
CurriculumProgressionEntry<T>
Inherited Members

Properties

DataFraction

Gets or sets the current data fraction.

public T DataFraction { get; set; }

Property Value

T

DifficultyThreshold

Gets or sets the difficulty threshold for this epoch.

public T DifficultyThreshold { get; set; }

Property Value

T

Epoch

Gets or sets the epoch number.

public int Epoch { get; set; }

Property Value

int

Phase

Gets or sets the phase number.

public int Phase { get; set; }

Property Value

int

SamplesUsed

Gets or sets the number of samples used.

public int SamplesUsed { get; set; }

Property Value

int

Timestamp

Gets or sets the timestamp.

public DateTime Timestamp { get; set; }

Property Value

DateTime

TrainingLoss

Gets or sets the training loss.

public T TrainingLoss { get; set; }

Property Value

T

ValidationLoss

Gets or sets the validation loss (if available).

public T? ValidationLoss { get; set; }

Property Value

T