Append to the log instead of overwriting it.
[pysvrt.git] / cnn-svrt.py
index 63b11ee..e5ecf76 100755 (executable)
@@ -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