Skip to content

Commit

Permalink
Adaboost: Remove deprecate argument 'algorithm'
Browse files Browse the repository at this point in the history
  • Loading branch information
janezd committed Oct 9, 2024
1 parent 742922e commit 6c21763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Orange/ensembles/ada_boost.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class SklAdaBoostClassificationLearner(SklLearnerClassification):
supports_weights = True

def __init__(self, estimator=None, n_estimators=50, learning_rate=1.,
algorithm='SAMME.R', random_state=None, preprocessors=None,
random_state=None, preprocessors=None,
base_estimator="deprecated"):
if base_estimator != "deprecated":
base_estimator_deprecation()
Expand Down

0 comments on commit 6c21763

Please sign in to comment.