You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source-pytorch/common/early_stopping.rst
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,7 +103,9 @@ The available stopping reasons are:
103
103
- ``STOPPING_THRESHOLD``: Training stopped because the monitored metric reached the stopping threshold
104
104
- ``DIVERGENCE_THRESHOLD``: Training stopped because the monitored metric exceeded the divergence threshold
105
105
- ``PATIENCE_EXHAUSTED``: Training stopped because the metric didn't improve for the specified patience
106
-
- ``NON_FINITE_METRIC``: Training stopped because the monitored metric became NaN or infiniteIn case you need early stopping in a different part of training, subclass :class:`~lightning.pytorch.callbacks.early_stopping.EarlyStopping`
106
+
- ``NON_FINITE_METRIC``: Training stopped because the monitored metric became NaN or infinite
107
+
108
+
In case you need early stopping in a different part of training, subclass :class:`~lightning.pytorch.callbacks.early_stopping.EarlyStopping`
0 commit comments