-
Notifications
You must be signed in to change notification settings - Fork 1
/
MLproject
23 lines (23 loc) · 936 Bytes
/
MLproject
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
entry_points:
main:
parameters:
k: {type: int, default: 10}
train_path: path
test_path: path
seed: {type: int, default: 1}
weights: {type: string, default: "0.3,0.3,0.3"}
normalization: string
algorithm: string
diversity: string
metadata_path: {type: string, default: ""}
baseline: string
shift: float
cache_dir: {type: string, default: ""}
discounts: string
command: "python3 main.py \
--k {k} --train_path {train_path} --test_path {test_path} \
--seed {seed} --weights {weights} --normalization {normalization} \
--algorithm {algorithm} --diversity {diversity} \
--metadata_path {metadata_path} --baseline {baseline} \
--shift {shift} --cache_dir {cache_dir} \
--discounts {discounts}"