feat: Size arg

This commit is contained in:
Tibo De Peuter 2025-12-10 16:29:39 +01:00
parent 6c5908e6ae
commit 67310ce4f4
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
2 changed files with 6 additions and 1 deletions

View file

@ -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])