Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
EdenWuyifan committed Jun 13, 2023
1 parent 93c8960 commit b4581ca
Showing 1 changed file with 30 additions and 37 deletions.
67 changes: 30 additions & 37 deletions alpha_automl/hyperparameter_tuning/smac_parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,32 @@
},
"sklearn.discriminant_analysis.LinearDiscriminantAnalysis": {},
"sklearn.discriminant_analysis.QuadraticDiscriminantAnalysis": {},
"sklearn.ensemble.BaggingClassifier": {},
"sklearn.ensemble.BaggingClassifier": {
"n_estimators": {
"type": "Integer",
"value": [
200,
2000
],
"default": 400
},
"max_samples": {
"type": "Float",
"value": [
0,
1
],
"default": 0.5
},
"max_features": {
"type": "Float",
"value": [
0,
1
],
"default": 0.5
}
},
"sklearn.ensemble.ExtraTreesClassifier": {
"random_state": {
"type": "Integer",
Expand All @@ -50,33 +75,17 @@
"default": 0
},
"n_estimators": {
"type": "Categorical",
"type": "Integer",
"value": [
200,
400,
600,
800,
1000,
1200,
1400,
1600,
1800,
2000
],
"default": 400
},
"max_depth": {
"type": "Categorical",
"type": "Integer",
"value": [
10,
20,
30,
40,
50,
60,
70,
80,
90,
100
],
"default": 40
Expand All @@ -85,33 +94,17 @@
"sklearn.ensemble.GradientBoostingClassifier": {},
"sklearn.ensemble.RandomForestClassifier": {
"n_estimators": {
"type": "Categorical",
"type": "Integer",
"value": [
200,
400,
600,
800,
1000,
1200,
1400,
1600,
1800,
2000
],
"default": 400
},
"max_depth": {
"type": "Categorical",
"type": "Integer",
"value": [
10,
20,
30,
40,
50,
60,
70,
80,
90,
100
],
"default": 40
Expand Down

0 comments on commit b4581ca

Please sign in to comment.