From b9381c32584213ba9bd724acf56b1d6a7dff6c99 Mon Sep 17 00:00:00 2001 From: siahuat0727 Date: Wed, 29 Jul 2020 19:11:49 +0800 Subject: [PATCH] Fix docs typo (#2747) --- pytorch_lightning/callbacks/early_stopping.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pytorch_lightning/callbacks/early_stopping.py b/pytorch_lightning/callbacks/early_stopping.py index b1d5afb938..d60e3d8158 100644 --- a/pytorch_lightning/callbacks/early_stopping.py +++ b/pytorch_lightning/callbacks/early_stopping.py @@ -35,9 +35,9 @@ class EarlyStopping(Callback): 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. Default: ``0``. + improvement. Default: ``0.0``. 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``. mode: one of {auto, min, max}. In `min` mode, training will stop when the quantity