Skip to content

Commit a58e495

Browse files
committed
downloader handles wheter to download data or not, so remove option
1 parent a2606e1 commit a58e495

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

utils/arg_parser.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,6 @@ def get_args():
3333
help="Whether model should be saved or not.",
3434
)
3535

36-
parser.add_argument(
37-
"--download-data",
38-
action="store_true",
39-
help="Whether the data should be downloaded or not. Might cause code to start a bit slowly.",
40-
)
41-
4236
# Data/Model specific values
4337
parser.add_argument(
4438
"--modelname",
@@ -55,7 +49,7 @@ def get_args():
5549
help="Which dataset to train the model on.",
5650
)
5751
parser.add_argument(
58-
"--validation_split_percentage",
52+
"--val_size",
5953
type=float,
6054
default=0.2,
6155
help="Percentage of training dataset to be used as validation dataset - must be within (0,1).",

0 commit comments

Comments
 (0)