Skip to content

Commit 632748a

Browse files
authored
Merge pull request #67 from automl/bug/smac-example-logs
Bug/smac example logs
2 parents 72fa354 + 99d7e32 commit 632748a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+6733
-22892
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Bug-Fixes
44
- Fix seaborn style name (#82).
55
- Remove potential sources of nondeterminism in evaluators by not setting seeds randomly (#75).
6+
- Exchange SMAC log examples to fix issue with PDP (#54).
67

78
# Version 1.1.2
89

Lines changed: 19 additions & 81 deletions
Original file line numberDiff line numberDiff line change
@@ -1,102 +1,40 @@
11
{
22
"hyperparameters": [
33
{
4-
"name": "activation",
5-
"type": "categorical",
6-
"choices": [
7-
"logistic",
8-
"tanh",
9-
"relu"
10-
],
11-
"default": "tanh",
12-
"probabilities": null
13-
},
14-
{
15-
"name": "n_layer",
16-
"type": "uniform_int",
17-
"log": false,
18-
"lower": 1,
19-
"upper": 5,
20-
"default": 1,
21-
"q": null
4+
"name": "alpha",
5+
"type": "uniform_float",
6+
"log": true,
7+
"lower": 1e-08,
8+
"upper": 1.0,
9+
"default": 0.001
2210
},
2311
{
24-
"name": "n_neurons",
12+
"name": "batch_size",
2513
"type": "uniform_int",
2614
"log": true,
27-
"lower": 8,
28-
"upper": 1024,
29-
"default": 10,
30-
"q": null
31-
},
32-
{
33-
"name": "solver",
34-
"type": "categorical",
35-
"choices": [
36-
"lbfgs",
37-
"sgd",
38-
"adam"
39-
],
40-
"default": "adam",
41-
"probabilities": null
15+
"lower": 4,
16+
"upper": 256,
17+
"default": 32
4218
},
4319
{
44-
"name": "batch_size",
20+
"name": "depth",
4521
"type": "uniform_int",
4622
"log": false,
47-
"lower": 30,
48-
"upper": 300,
49-
"default": 200,
50-
"q": null
51-
},
52-
{
53-
"name": "learning_rate",
54-
"type": "categorical",
55-
"choices": [
56-
"constant",
57-
"invscaling",
58-
"adaptive"
59-
],
60-
"default": "constant",
61-
"probabilities": null
23+
"lower": 1,
24+
"upper": 3,
25+
"default": 3
6226
},
6327
{
6428
"name": "learning_rate_init",
6529
"type": "uniform_float",
6630
"log": true,
67-
"lower": 0.0001,
31+
"lower": 1e-05,
6832
"upper": 1.0,
69-
"default": 0.001,
70-
"q": null
71-
}
72-
],
73-
"conditions": [
74-
{
75-
"child": "batch_size",
76-
"parent": "solver",
77-
"type": "IN",
78-
"values": [
79-
"sgd",
80-
"adam"
81-
]
82-
},
83-
{
84-
"child": "learning_rate",
85-
"parent": "solver",
86-
"type": "EQ",
87-
"value": "sgd"
88-
},
89-
{
90-
"child": "learning_rate_init",
91-
"parent": "solver",
92-
"type": "IN",
93-
"values": [
94-
"sgd",
95-
"adam"
96-
]
33+
"default": 0.001
9734
}
9835
],
36+
"conditions": [],
9937
"forbiddens": [],
100-
"python_module_version": "0.4.19",
101-
"json_format_version": 0.2
38+
"python_module_version": "0.6.1",
39+
"json_format_version": 0.4
10240
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
alpha real [1e-08, 1.0] [0.001]log
2+
batch_size integer [4, 256] [32]log
3+
depth integer [1, 3] [3]
4+
learning_rate_init real [1e-05, 1.0] [0.001]log

0 commit comments

Comments
 (0)