-
Notifications
You must be signed in to change notification settings - Fork 13
/
__init__.py
37 lines (35 loc) · 1.17 KB
/
__init__.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
all_main_examples = { # Used for printing in python -m neps_examples
"basic_usage": [
"analyse",
"architecture",
"architecture_and_hyperparameters",
"hyperparameters",
],
"convenience": [
"logging_additional_info",
"neps_tblogger_tutorial",
"running_on_slurm_scripts",
"neps_x_lightning",
"running_on_slurm_scripts",
"working_directory_per_pipeline",
],
"efficiency": [
"expert_priors_for_hyperparameters",
"multi_fidelity",
"multi_fidelity_and_expert_priors",
],
}
core_examples = [ # Run locally and on github actions
"basic_usage/hyperparameters", # NOTE: This needs to be first for some tests to work
"basic_usage/analyse",
"experimental/expert_priors_for_architecture_and_hyperparameters",
"efficiency/multi_fidelity",
]
ci_examples = [ # Run on github actions
"basic_usage/architecture_and_hyperparameters",
"experimental/hierarchical_architecture",
"efficiency/expert_priors_for_hyperparameters",
"convenience/logging_additional_info",
"convenience/working_directory_per_pipeline",
"convenience/neps_tblogger_tutorial",
]