Table of Contents

Class GlobalEarlyStoppingConfig

Namespace
AiDotNet.Models.Options
Assembly
AiDotNet.dll

Global early stopping configuration that spans multiple training stages.

public class GlobalEarlyStoppingConfig : EarlyStoppingConfig
Inheritance
GlobalEarlyStoppingConfig
Inherited Members

Properties

MaxTotalTime

Gets or sets the maximum total training time across all stages.

public TimeSpan? MaxTotalTime { get; set; }

Property Value

TimeSpan?

StopOnStageFailure

Gets or sets whether to stop the entire pipeline if any stage fails.

public bool StopOnStageFailure { get; set; }

Property Value

bool

TargetMetricValue

Gets or sets the target metric value to achieve (stops when reached).

public double? TargetMetricValue { get; set; }

Property Value

double?