Skip to content

Commit

Permalink
Merge pull request #67 from automl/bug/smac-example-logs
Browse files Browse the repository at this point in the history
Bug/smac example logs
  • Loading branch information
sarah-segel authored Oct 27, 2023
2 parents 72fa354 + 99d7e32 commit 632748a
Show file tree
Hide file tree
Showing 41 changed files with 6,733 additions and 22,892 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Bug-Fixes
- Fix seaborn style name (#82).
- Remove potential sources of nondeterminism in evaluators by not setting seeds randomly (#75).
- Exchange SMAC log examples to fix issue with PDP (#54).

# Version 1.1.2

Expand Down
100 changes: 19 additions & 81 deletions logs/SMAC3v1/mlp/run_1/configspace.json
Original file line number Diff line number Diff line change
@@ -1,102 +1,40 @@
{
"hyperparameters": [
{
"name": "activation",
"type": "categorical",
"choices": [
"logistic",
"tanh",
"relu"
],
"default": "tanh",
"probabilities": null
},
{
"name": "n_layer",
"type": "uniform_int",
"log": false,
"lower": 1,
"upper": 5,
"default": 1,
"q": null
"name": "alpha",
"type": "uniform_float",
"log": true,
"lower": 1e-08,
"upper": 1.0,
"default": 0.001
},
{
"name": "n_neurons",
"name": "batch_size",
"type": "uniform_int",
"log": true,
"lower": 8,
"upper": 1024,
"default": 10,
"q": null
},
{
"name": "solver",
"type": "categorical",
"choices": [
"lbfgs",
"sgd",
"adam"
],
"default": "adam",
"probabilities": null
"lower": 4,
"upper": 256,
"default": 32
},
{
"name": "batch_size",
"name": "depth",
"type": "uniform_int",
"log": false,
"lower": 30,
"upper": 300,
"default": 200,
"q": null
},
{
"name": "learning_rate",
"type": "categorical",
"choices": [
"constant",
"invscaling",
"adaptive"
],
"default": "constant",
"probabilities": null
"lower": 1,
"upper": 3,
"default": 3
},
{
"name": "learning_rate_init",
"type": "uniform_float",
"log": true,
"lower": 0.0001,
"lower": 1e-05,
"upper": 1.0,
"default": 0.001,
"q": null
}
],
"conditions": [
{
"child": "batch_size",
"parent": "solver",
"type": "IN",
"values": [
"sgd",
"adam"
]
},
{
"child": "learning_rate",
"parent": "solver",
"type": "EQ",
"value": "sgd"
},
{
"child": "learning_rate_init",
"parent": "solver",
"type": "IN",
"values": [
"sgd",
"adam"
]
"default": 0.001
}
],
"conditions": [],
"forbiddens": [],
"python_module_version": "0.4.19",
"json_format_version": 0.2
"python_module_version": "0.6.1",
"json_format_version": 0.4
}
4 changes: 4 additions & 0 deletions logs/SMAC3v1/mlp/run_1/configspace.pcs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
alpha real [1e-08, 1.0] [0.001]log
batch_size integer [4, 256] [32]log
depth integer [1, 3] [3]
learning_rate_init real [1e-05, 1.0] [0.001]log
Loading

0 comments on commit 632748a

Please sign in to comment.