diff --git a/keras/src/callbacks/model_checkpoint.py b/keras/src/callbacks/model_checkpoint.py index 6143cbfa8fcf..a2f7306eff91 100644 --- a/keras/src/callbacks/model_checkpoint.py +++ b/keras/src/callbacks/model_checkpoint.py @@ -283,6 +283,11 @@ def _save_model(self, epoch, batch, logs): self.model.save_weights(filepath, overwrite=True) else: self.model.save(filepath, overwrite=True) + if self.verbose > 0: + io_utils.print_msg( + f"\nEpoch {epoch + 1}: " + f"finished saving model to {filepath}" + ) except IsADirectoryError: # h5py 3.x raise IOError( "Please specify a non-directory filepath for "