From fdd9a6aae9c23e7140a9c74a741cf4217acdb489 Mon Sep 17 00:00:00 2001 From: Jegathesan Shanmugam Date: Thu, 27 Jun 2019 17:39:55 +0530 Subject: [PATCH] modified checkpoint dir in test_enet.py as pointing to logs dir --- test_enet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_enet.py b/test_enet.py index cd0a21c..7ab65ec 100644 --- a/test_enet.py +++ b/test_enet.py @@ -14,7 +14,7 @@ #Directories flags.DEFINE_string('dataset_dir', './dataset', 'The dataset directory to find the train, validation and test images.') -flags.DEFINE_string('checkpoint_dir', './log/original', 'The checkpoint directory to restore your mode.l') +flags.DEFINE_string('checkpoint_dir', './checkpoint/', 'The checkpoint directory to restore your mode.l') flags.DEFINE_string('logdir', './log/original_test', 'The log directory for event files created during test evaluation.') flags.DEFINE_boolean('save_images', True, 'If True, saves 10 images to your logdir for visualization.')