-
Notifications
You must be signed in to change notification settings - Fork 3
/
hyperparameter_search.json
111 lines (111 loc) · 2.24 KB
/
hyperparameter_search.json
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"setup": {
"logging_level": "INFO",
"address": "127.0.0.1:57780",
"_redis_password": "password"
},
"scheduler": {
"name": "ray.tune.schedulers.AsyncHyperBandScheduler",
"time_attr": "training_iteration",
"metric": "val_loss",
"mode": "min",
"max_t": 5,
"grace_period": 1,
"reduction_factor": 2,
"brackets": 1
},
"searcher": {
"name": "ray.tune.suggest.hyperopt.HyperOptSearch",
"max_concurrent": 6,
"metric": "val_loss",
"mode": "min",
"n_initial_points": 50,
"use_early_stopped_trials": true
},
"train_spec": {
"name": "Ray_Optimization",
"resources_per_trial": {
"cpu": 10,
"gpu": 1,
"extra_cpu": 1,
"extra_gpu": 0
},
"stop": {
"auc": 50,
"reached_max_step": true,
"early_stopped": true
},
"config": {
"epochs_per_timestep": 20,
"validation_batches": 10
},
"num_samples": 500,
"max_failures": 10,
"checkpoint_at_end": false
},
"search_space": {
"training": {
"optimizer": {
"learning_rate": {
"type": "hyperopt.hp.lognormal",
"name": "learning_rate",
"args": [
-4,
2
]
}
}
},
"model": {
"reconstruction_loss": {
"weight_clipping": {
"name": "reconstruction_loss_weighting_clipping",
"type": "hyperopt.hp.uniform",
"args": [
1,
20
]
}
},
"wae_lambda": {
"name": "wae_lambda",
"type": "hyperopt.hp.lognormal",
"args": [
0,
3
]
},
"weighting_random_encoder": {
"name": "weighting_random",
"type": "hyperopt.hp.lognormal",
"args": [
-2,
3
]
},
"output_fn": {
"name": "output_function",
"type": "hyperopt.hp.choice",
"args": [
[
"softmax",
"softplus"
]
]
},
"latent_dim": {
"name": "latent_dim",
"type": "hyperopt.hp.quniform",
"args": [
32,
140,
4
]
}
}
},
"analysis": {
"mode": "min",
"metric": "auc"
}
}