From bec43c9f8a1359fb713d774e0c18230c6eae9889 Mon Sep 17 00:00:00 2001 From: Jirka Borovec Date: Fri, 27 Mar 2020 13:41:07 +0100 Subject: [PATCH] update docs for progress bat values (#1253) --- pytorch_lightning/core/lightning.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pytorch_lightning/core/lightning.py b/pytorch_lightning/core/lightning.py index 7d87c4e954502..b648c86843520 100644 --- a/pytorch_lightning/core/lightning.py +++ b/pytorch_lightning/core/lightning.py @@ -220,6 +220,10 @@ def training_step(self, batch, batch_idx, hiddens): You can also return a -1 instead of a dict to stop the current loop. This is useful if you want to break out of the current training epoch early. + + Notes: + The presented loss value in progress bar is smooth (average) over last values, + so it differs from values set in train/validation step. """ def training_end(self, *args, **kwargs):