forked from TangYiChing/PathDSP
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhpo_deephyper_params_def.py
62 lines (62 loc) · 1.48 KB
/
hpo_deephyper_params_def.py
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
50
51
52
53
54
55
56
57
58
59
60
61
62
additional_definitions = [
{"name": "source",
"type": str,
"default": "GDSCv1",
"help": "source dataset for HPO"
},
{"name": "split",
"type": str,
"default": "4",
"help": "Split of the source datasets for HPO"
},
{"name": "model_name",
"type": str,
"default": 'PathDSP',
"help": "Name of the deep learning model"
},
{"name": "model_scripts_dir",
"type": str,
"default": './',
"help": "Path to the model repository"
},
{"name": "model_environment",
"type": str,
"default": '',
"help": "Name of your model conda environment"
},
{"name": "epochs",
"type": int,
"default": 10,
"help": "Number of epochs"
},
{"name": "use_singularity",
"type": bool,
"default": True,
"help": "Do you want to use singularity image for running the model?"
},
{"name": "singularity_image",
"type": str,
"default": '',
"help": "Singularity image file of the model"
},
{"name": "val_loss",
"type": str,
"default": 'mse',
"help": "Type of loss for validation"
},
{"name": "max_evals",
"type": int,
"default": 20,
"help": "Number of evaluations"
},
{"name": "interactive_session",
"type": bool,
"default": True,
"help": "Are you using an interactive session?"
},
{"name": "ml_data_dir",
"type": str,
"default": './',
"help": "Location of the preprocessed data."
}
]