From e713e2e1e0f85a201140948986499209154bcad2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20W=C3=A4lchli?= Date: Thu, 26 Sep 2019 21:04:57 +0200 Subject: [PATCH] fix typo in early stopping (#260) --- docs/Trainer/Training Loop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Trainer/Training Loop.md b/docs/Trainer/Training Loop.md index 2193e4dac5..8d95bc288a 100644 --- a/docs/Trainer/Training Loop.md +++ b/docs/Trainer/Training Loop.md @@ -21,7 +21,7 @@ trainer = Trainer(min_nb_epochs=1, max_nb_epochs=1000) --- #### Early stopping -To enable ealry-stopping, define the callback and give it to the trainer. +To enable early-stopping, define the callback and give it to the trainer. ``` {.python} from pytorch_lightning.callbacks import EarlyStopping