Fix docs typo (#2747)
This commit is contained in:
parent
63b92b7e63
commit
b9381c3258
|
@ -35,9 +35,9 @@ class EarlyStopping(Callback):
|
||||||
min_delta: minimum change in the monitored quantity
|
min_delta: minimum change in the monitored quantity
|
||||||
to qualify as an improvement, i.e. an absolute
|
to qualify as an improvement, i.e. an absolute
|
||||||
change of less than `min_delta`, will count as no
|
change of less than `min_delta`, will count as no
|
||||||
improvement. Default: ``0``.
|
improvement. Default: ``0.0``.
|
||||||
patience: number of validation epochs with no improvement
|
patience: number of validation epochs with no improvement
|
||||||
after which training will be stopped. Default: ``0``.
|
after which training will be stopped. Default: ``3``.
|
||||||
verbose: verbosity mode. Default: ``False``.
|
verbose: verbosity mode. Default: ``False``.
|
||||||
mode: one of {auto, min, max}. In `min` mode,
|
mode: one of {auto, min, max}. In `min` mode,
|
||||||
training will stop when the quantity
|
training will stop when the quantity
|
||||||
|
|
Loading…
Reference in New Issue