From e22dea228f32966675eb760d6df56f1141f45b8c Mon Sep 17 00:00:00 2001 From: Anton Bakhtin <7470747+akhti@users.noreply.github.com> Date: Fri, 8 Nov 2019 08:50:39 -0500 Subject: [PATCH] Remove errnonoeous comma in logging call (#474) --- pytorch_lightning/callbacks/pt_callbacks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytorch_lightning/callbacks/pt_callbacks.py b/pytorch_lightning/callbacks/pt_callbacks.py index 388fca69..1b35bfc5 100644 --- a/pytorch_lightning/callbacks/pt_callbacks.py +++ b/pytorch_lightning/callbacks/pt_callbacks.py @@ -253,7 +253,7 @@ class ModelCheckpoint(Callback): if self.verbose > 0: logging.info( f'\nEpoch {epoch + 1:05d}: {self.monitor} improved' - f' from {self.best:0.5f} to {current:0.5f},', + f' from {self.best:0.5f} to {current:0.5f},' f' saving model to {filepath}') self.best = current self.save_model(filepath, overwrite=True)