-
Notifications
You must be signed in to change notification settings - Fork 64
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
The CatBoost estimator seems different enough from sklearn, that we should add a separate integration for it into Hyperactive. The CatBoostCvExperiment could look similar to this:
class CatBoostCvExperiment(BaseExperiment):
_tags = {
"python_dependencies": "catboost",
"property:higher_or_lower_is_better": "lower",
}
def __init__(
self,
pool,
iterations=100,
fold_count=5,
early_stopping_rounds=None,
partition_random_seed=0,
type="Classical",
):Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers