@@ -23,6 +21,7 @@ parser.add_option("-o", "--path_output", dest="output_path", help="Path to base
parser.add_option("-t","--path_test",dest="test_path",help="Path to test input.",default="./input/test_data")
parser.add_option("--base_network_file",dest="base_net_file",help="Optional link to local file of Resnet 152 V2 for TF without top.")
parser.add_option("--num_epochs",type="int",dest="num_epochs",help="Number of epochs.",default=100)
parser.add_option("--num_epochs_pre_train",type="int",dest="num_epochs_pre_train",help="Number of epochs for the basic training of the FC layers.",default=50)
parser.add_option("--batch_size",type="int",dest="batch_size",help="Size of batches.",default=10)
parser.add_option("--patience",type="int",dest="early_stopping_patience",help="How many epochs without improvement should the training going on?",default=5)
parser.add_option("--split_size",type="float",dest="split_size",help="Proportion of validation examples out of all test examples. Set as value between 0 and 1.",default=0.5)