From 8b6f324709a07ef754e0fd65f18d925403f90151 Mon Sep 17 00:00:00 2001 From: Dominique <dominique.benielli@univ-amu.fr> Date: Wed, 26 Feb 2025 16:04:41 +0100 Subject: [PATCH] Update adaboost.py --- .../monoview_classifiers/adaboost.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/summit/multiview_platform/monoview_classifiers/adaboost.py b/summit/multiview_platform/monoview_classifiers/adaboost.py index 7e043504..05f3a46a 100644 --- a/summit/multiview_platform/monoview_classifiers/adaboost.py +++ b/summit/multiview_platform/monoview_classifiers/adaboost.py @@ -23,18 +23,18 @@ class Adaboost(AdaBoostClassifier, BaseMonoviewClassifier): """ def __init__(self, random_state=None, n_estimators=50, - base_estimator=None, base_estimator_config=None, **kwargs): + estimator=None, base_estimator_config=None, **kwargs): base_estimator = BaseMonoviewClassifier.get_base_estimator(self, - base_estimator, + estimator, base_estimator_config) AdaBoostClassifier.__init__(self, random_state=random_state, n_estimators=n_estimators, - estimator=base_estimator, + estimator=estimator, algorithm="SAMME" ) - self.param_names = ["n_estimators", "base_estimator"] - self.classed_params = ["base_estimator"] + self.param_names = ["n_estimators", "estimator"] + self.classed_params = ["estimator"] self.distribs = [CustomRandint(low=1, high=500), base_boosting_estimators] self.weird_strings = {"base_estimator": "class_name"} -- GitLab