Append to the log instead of overwriting it.
[pysvrt.git] / cnn-svrt.py
index 7fde85d..e5ecf76 100755 (executable)
@@ -79,13 +79,13 @@ parser.add_argument('--test_loaded_models',
 
 parser.add_argument('--problems',
                     type = str, default = '1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23',
-                    help = 'What problem to process')
+                    help = 'What problems to process')
 
 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