From 9eec6d457d017e0204cc80c0e1b24f894d064267 Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Sun, 18 Jun 2017 15:27:39 +0200 Subject: [PATCH] Append to the log instead of overwriting it. --- cnn-svrt.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cnn-svrt.py b/cnn-svrt.py index 63b11ee..e5ecf76 100755 --- a/cnn-svrt.py +++ b/cnn-svrt.py @@ -85,7 +85,7 @@ args = parser.parse_args() ###################################################################### -log_file = open(args.log_file, 'w') +log_file = open(args.log_file, 'a') pred_log_t = None print(Fore.RED + 'Logging into ' + args.log_file + Style.RESET_ALL) @@ -273,6 +273,8 @@ if args.nb_train_samples%args.batch_size > 0 or args.nb_test_samples%args.batch_ print('The number of samples must be a multiple of the batch size.') raise +log_string('############### start ###############') + if args.compress_vignettes: log_string('using_compressed_vignettes') VignetteSet = svrtset.CompressedVignetteSet -- 2.20.1