This commit is contained in:
William Falcon 2020-03-03 16:57:49 -05:00
parent 010f63d219
commit 6a39573267
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ class ModelCheckpoint(Callback):
# save epoch and val_loss in name
ModelCheckpoint(filepath='{epoch:02d}-{val_loss:.2f}.hdf5')
# saves file like: /my/path/here/sample-mnist_epoch=02_val_loss=0.32.ckpt
# if such model already exits, the file will be: /my/path/here/sample-mnist-v0_epoch=02_val_loss=0.32.ckpt
# if model already exits, the file will be: /my/path/here/sample-mnist-v0_epoch=02_val_loss=0.32.ckpt
monitor: quantity to monitor.
verbose: verbosity mode, False or True.