From: Francois Fleuret Date: Sun, 18 Jun 2017 13:27:39 +0000 (+0200) Subject: Append to the log instead of overwriting it. X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=pysvrt.git;a=commitdiff_plain;h=9eec6d457d017e0204cc80c0e1b24f894d064267 Append to the log instead of overwriting it. --- 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