mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-10 12:21:57 +08:00
Remove errnonoeous comma in logging call (#474)
This commit is contained in:
committed by
William Falcon
parent
2acdfe57a7
commit
e22dea228f
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user