Skip to content

Commit

Permalink
Merge pull request #54 from HDI-Project/bcyphers/fix_hyperparameter_s…
Browse files Browse the repository at this point in the history
…cientific_notation

Fix hyperparameter scientific notation
  • Loading branch information
Bennett Cyphers authored Jan 15, 2018
2 parents c12aed7 + d400635 commit 9182af0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion methods/gaussian_process.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"length_scale": {
"type": "float_exp",
"range": [10e-5, 10e5]
"range": [0.01, 100]
},
"alpha": {
"type": "float",
Expand Down
4 changes: 2 additions & 2 deletions methods/logistic_regression.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"parameters": {
"C": {
"type": "float_exp",
"range": [10e-5, 10e5]
"range": [1e-5, 1e5]
},
"tol": {
"type": "float_exp",
"range": [10e-5, 10e5]
"range": [1e-5, 1e5]
},
"penalty": {
"type": "string",
Expand Down
2 changes: 1 addition & 1 deletion methods/passive_aggressive.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"parameters": {
"C": {
"type": "float_exp",
"range": [10e-5, 10e5]
"range": [1e-5, 1e5]
},
"fit_intercept": {
"type": "int_cat",
Expand Down
6 changes: 3 additions & 3 deletions methods/stochastic_gradient_descent.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"alpha": {
"type": "float_exp",
"range": [10e-5, 10e5]
"range": [1e-5, 1e5]
},
"l1_ratio": {
"type": "float",
Expand All @@ -32,15 +32,15 @@
},
"epsilon": {
"type": "float_exp",
"range": [10e-5, 10e5]
"range": [1e-5, 1e5]
},
"learning_rate": {
"type": "string",
"range": ["constant", "optimal"]
},
"eta0": {
"type": "float_exp",
"range": [10e-5, 10e5]
"range": [1e-5, 1e5]
},
"class_weight": {
"type": "string",
Expand Down
6 changes: 3 additions & 3 deletions methods/support_vector_machine.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"parameters": {
"C": {
"type": "float_exp",
"range": [10e-5, 10e5]
"range": [1e-5, 1e5]
},
"gamma": {
"type": "float_exp",
"range": [10e-5, 10e5]
"range": [1e-5, 1e5]
},
"kernel": {
"type": "string",
Expand All @@ -20,7 +20,7 @@
},
"coef0": {
"type": "int",
"range": [-10e3, 10e3]
"range": [-1e3, 1e3]
},
"probability": {
"type": "bool",
Expand Down

0 comments on commit 9182af0

Please sign in to comment.