parser.add_argument('--stage',nargs='?',type=int,required=True,help='Specify the stage number among [1, 5].')
...
...
@@ -168,6 +169,7 @@ if __name__ == "__main__":
parser.add_argument('--results_dir',nargs='?',type=str,default=DEFAULT_RESULTS_DIR,help='The output directory of the results.')
parser.add_argument('--models_dir',nargs='?',type=str,default=DEFAULT_MODELS_DIR,help='The output directory of the trained models.')
parser.add_argument('--plot_weight_density',action='store_true',default=DEFAULT_PLOT_WEIGHT_DENSITY,help='Plot the weight density. Only working for regressor models for now.')
parser.add_argument('--wo_loss_plots',action='store_true',default=DEFAULT_WO_LOSS_PLOTS,help='Do not compute the loss plots.')