[docs] updated docs for min_delta parameter in early stopping callback (#9513)

This commit is contained in:
Burhanuddin Rangwala 2021-09-14 21:45:57 +05:30 committed by GitHub
parent 847a3fdc07
commit 90661c9eb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class EarlyStopping(Callback):
Args:
monitor: quantity to be monitored.
min_delta: minimum change in the monitored quantity to qualify as an improvement, i.e. an absolute
change of less than `min_delta`, will count as no improvement.
change of less than or equal to `min_delta`, will count as no improvement.
patience: number of checks with no improvement
after which training will be stopped. Under the default configuration, one check happens after
every training epoch. However, the frequency of validation can be modified by setting various parameters on