feat: Size arg
This commit is contained in:
parent
6c5908e6ae
commit
67310ce4f4
2 changed files with 6 additions and 1 deletions
|
|
@ -35,6 +35,8 @@ def parse_arguments():
|
|||
train_parser.add_argument("--method",
|
||||
choices=["fetch", "optuna", "full"], required=True,
|
||||
help="Method to use for training")
|
||||
train_parser.add_argument("--size", "-s", type=int, required=False,
|
||||
help="Size of the subset of the dataset to use")
|
||||
|
||||
compress_parser = subparsers.add_parser("compress", parents=[modelparser, fileparser])
|
||||
|
||||
|
|
|
|||
Reference in a new issue