Skip to content

Commit

Permalink
LogisticRegressionLearner: Remove deprecated argument 'multi_class'
Browse files Browse the repository at this point in the history
  • Loading branch information
janezd committed Dec 13, 2024
1 parent c2c1648 commit f04e655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Orange/classification/logistic_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class LogisticRegressionLearner(SklLearner, _FeatureScorerMixin):
def __init__(self, penalty="l2", dual=False, tol=0.0001, C=1.0,
fit_intercept=True, intercept_scaling=1, class_weight=None,
random_state=None, solver="auto", max_iter=100,
multi_class="auto", verbose=0, n_jobs=1, preprocessors=None):
verbose=0, n_jobs=1, preprocessors=None):
super().__init__(preprocessors=preprocessors)
self.params = vars()

Expand Down

0 comments on commit f04e655

Please sign in to comment.