-
Notifications
You must be signed in to change notification settings - Fork 0
/
MLproject
49 lines (48 loc) · 1.29 KB
/
MLproject
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: ml-project-template
entry_points:
main:
parameters:
runner:
type: str
dataset:
type: str
default: mnist
model:
type: str
default: fcnn
dataset_param_path:
type: str
default: dataset.conf.yaml
model_param_path:
type: str
default: model.conf.yaml
command: "python run_once.py {runner} --dataset {dataset} --model {model} --dataset_param_path {dataset_param_path} --model_param_path {model_param_path}"
grid_seach:
parameters:
runner:
type: str
dataset:
type: str
default: mnist
model:
type: str
default: fcnn
params_path:
type: str
default: params.conf.yaml
command: "python run_grid_search.py {runner} --dataset {dataset} --model {model} --params_path {params_path}"
gan_train:
parameters:
dataset:
type: str
default: mnist
model:
type: str
default: gan
dataset_param_path:
type: str
default: dataset.conf.yaml
model_param_path:
type: str
default: model.conf.yaml
command: "python gan_train.py --dataset {dataset} --model {model} --dataset_param_path {dataset_param_path} --model_param_path {model_param_path}"