We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2606e1 commit a58e495Copy full SHA for a58e495
utils/arg_parser.py
@@ -33,12 +33,6 @@ def get_args():
33
help="Whether model should be saved or not.",
34
)
35
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
-
42
# Data/Model specific values
43
parser.add_argument(
44
"--modelname",
@@ -55,7 +49,7 @@ def get_args():
55
49
help="Which dataset to train the model on.",
56
50
57
51
58
- "--validation_split_percentage",
52
+ "--val_size",
59
53
type=float,
60
54
default=0.2,
61
help="Percentage of training dataset to be used as validation dataset - must be within (0,1).",
0 commit comments