StopReason¶
- class StopReason[source]¶
-
Reason why early stopping was triggered.
Inherits from
strso that values serialize naturally to JSON and can be compared directly with plain strings.Attributes Summary
Variance of recent cost values dropped below
variance_threshold.L2 norm of the gradient fell below
grad_norm_threshold.Cost did not improve by at least
min_deltaforpatienceconsecutive iterations.Attributes Documentation
- COST_VARIANCE_SETTLED = 'cost_variance_settled'¶
Variance of recent cost values dropped below
variance_threshold.
- GRADIENT_BELOW_THRESHOLD = 'gradient_below_threshold'¶
L2 norm of the gradient fell below
grad_norm_threshold.
- PATIENCE_EXCEEDED = 'patience_exceeded'¶
Cost did not improve by at least
min_deltaforpatienceconsecutive iterations.