From eea7d5f576b4f2ae0ed6077156f36d8d406526df Mon Sep 17 00:00:00 2001 From: "J. Borovec" Date: Thu, 26 Mar 2020 23:24:11 +0100 Subject: [PATCH] update docs for progress bat values --- 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 2a67d32748c42..a2bf3c6fc077a 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):