Skip to content

Commit

Permalink
Clarify help
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmaRenauld committed Oct 30, 2023
1 parent f7cdb34 commit d4228e8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions scripts_python/dwiml_visualize_logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ def _build_arg_parser():
parser.add_argument("--nb_plots_per_fig", type=int, default=3,
help="Number of (rows) of plot per figure.")
parser.add_argument("--save_to_csv", metavar='my_file.csv',
help="If set, save the resulting logs as a csv file.")
parser.add_argument('--xlim', type=int,
help="Graph's xlim. Makes little sense with more than "
"one graph. Format: max_epoch ")
parser.add_argument('--ylims', type=float, nargs=2,
help="Graph's ylim. Makes little sense with more than "
"one graph. Format: ymin ymax ")
help="If set, save the resulting logs as a csv file \n"
"(chosen --graph only, if any).")
parser.add_argument('--xlim', type=int, metavar='epoch_max',
help="All graphs' xlim.")
parser.add_argument('--ylims', type=float, nargs=2, metavar='ymin ymax',
help="All graph's ylim. (Makes little sense with more "
"than one graph.)")

add_overwrite_arg(parser)
return parser
Expand Down

0 comments on commit d4228e8

Please sign in to comment.