Class GlobalEarlyStoppingConfig
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
StopOnStageFailure
Gets or sets whether to stop the entire pipeline if any stage fails.
public bool StopOnStageFailure { get; set; }
Property Value
TargetMetricValue
Gets or sets the target metric value to achieve (stops when reached).
public double? TargetMetricValue { get; set; }