Skip to content

Commit

Permalink
add catboostclassifier
Browse files Browse the repository at this point in the history
  • Loading branch information
EdenWuyifan committed May 7, 2024
1 parent fb617a4 commit 09d67b6
Showing 1 changed file with 60 additions and 1 deletion.
61 changes: 60 additions & 1 deletion alpha_automl/hyperparameter_tuning/smac_parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -247,5 +247,64 @@
"sklearn.ensemble.AdaBoostRegressor": {},
"sklearn.ensemble.BaggingRegressor": {},
"sklearn.ensemble.StackingRegressor": {},
"sklearn.ensemble.VotingRegressor": {}
"sklearn.ensemble.VotingRegressor": {},
"catboost.CatBoostClassifier": {
"iterations": {
"type": "Integer",
"value": [
100,
2000
],
"default": 1000
},
"learning_rate": {
"type": "Float",
"value": [
0.01,
0.3
],
"default": 0.1
},
"depth": {
"type": "Integer",
"value": [
1,
16
],
"default": 6
},
"l2_leaf_reg": {
"type": "Float",
"value": [
1,
10
],
"default": 3
},
"border_count": {
"type": "Integer",
"value": [
32,
255
],
"default": 254
},
"ctr_border_count": {
"type": "Integer",
"value": [
50,
200
],
"default": 50
},
"auto_class_weights": {
"type": "Categorical",
"value": [
"None",
"Balanced",
"SqrtBalanced"
],
"default": "None"
}
}
}

0 comments on commit 09d67b6

Please sign in to comment.