From 1e16a79ac2f466e4274f1700df84d39b54969845 Mon Sep 17 00:00:00 2001 From: Gaurav Verma <gverma@iitk.ac.in> Date: Sun, 7 Jan 2018 13:40:07 +0530 Subject: [PATCH] interchanging , and ) (syntax error) --- train_cnn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/train_cnn.py b/train_cnn.py index 0fb81de..dbd188a 100644 --- a/train_cnn.py +++ b/train_cnn.py @@ -20,7 +20,7 @@ data = DataSet() # Helper: Save the model. checkpointer = ModelCheckpoint( - filepath=os.path.join('data', 'checkpoints', 'inception.{epoch:03d}-{val_loss:.2f}.hdf5',) + filepath=os.path.join('data', 'checkpoints', 'inception.{epoch:03d}-{val_loss:.2f}.hdf5'), verbose=1, save_best_only=True) -- GitLab