Table of Contents

Class CurriculumEarlyStoppingOptions

Namespace
AiDotNet.Configuration
Assembly
AiDotNet.dll

Early stopping options for curriculum learning.

public class CurriculumEarlyStoppingOptions
Inheritance
CurriculumEarlyStoppingOptions
Inherited Members

Properties

Enabled

Gets or sets whether early stopping is enabled.

public bool? Enabled { get; set; }

Property Value

bool?

Remarks

If null, defaults to true.

MinDelta

Gets or sets the minimum improvement required to reset patience counter.

public double? MinDelta { get; set; }

Property Value

double?

Remarks

If null, defaults to 0.001.

Patience

Gets or sets the patience (epochs without improvement before stopping).

public int? Patience { get; set; }

Property Value

int?

Remarks

If null, defaults to 10 epochs.