Skip to content
Snippets Groups Projects
Commit fdaf48f4 authored by Solene Tarride's avatar Solene Tarride Committed by Mélodie Boillet
Browse files

Set default value to None for --image_max_width during prediction

parent 78a69471
No related branches found
No related tags found
1 merge request!195Set default value to None for --image_max_width during prediction
...@@ -68,7 +68,7 @@ def add_predict_parser(subcommands) -> None: ...@@ -68,7 +68,7 @@ def add_predict_parser(subcommands) -> None:
parser.add_argument( parser.add_argument(
"--image-max-width", "--image-max-width",
type=int, type=int,
default=1800, default=None,
required=False, required=False,
help="Image resizing before feeding it to DAN", help="Image resizing before feeding it to DAN",
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment