Skip to content

Commit

Permalink
update hyperparams for tuning
Browse files Browse the repository at this point in the history
  • Loading branch information
aPovidlo committed Sep 5, 2023
1 parent 0bf8d30 commit e41a2f4
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions fedot/core/pipelines/tuning/search_space.py
Original file line number Diff line number Diff line change
Expand Up @@ -630,17 +630,22 @@ def get_parameters_dict(self):
'catboost': {
'max_depth': {
'hyperopt-dist': hp.uniformint,
'sampling-scope': [1, 16],
'sampling-scope': [1, 100],
'type': 'discrete'
},
'max_leaves': {
'hyperopt-dist': hp.uniformint,
'sampling-scope': [1, 100],
'type': 'discrete'
},
'learning_rate': {
'hyperopt-dist': hp.loguniform,
'sampling-scope': [0.01, 0.2],
'sampling-scope': [0.01, 0.5],
'type': 'continuous'
},
'min_data_in_leaf': {
'hyperopt-dist': partial(hp.qloguniform, q=1),
'sampling-scope': [0, 6],
'sampling-scope': [0, 100],
'type': 'discrete'
},
'border_count': {
Expand All @@ -652,7 +657,7 @@ def get_parameters_dict(self):
'hyperopt-dist': hp.loguniform,
'sampling-scope': [1e-8, 10],
'type': 'continuous'
}
},
},
'catboostreg': {
'max_depth': {
Expand Down

0 comments on commit e41a2f4

Please sign in to comment.