Remove errnonoeous comma in logging call (#474)

This commit is contained in:
Anton Bakhtin 2019-11-08 08:50:39 -05:00 committed by William Falcon
parent 2acdfe57a7
commit e22dea228f
1 changed files with 1 additions and 1 deletions

View File

@ -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)