Skip to content

Commit

Permalink
remove normalize args of RidgeClassifierCV
Browse files Browse the repository at this point in the history
  • Loading branch information
fkiraly committed Dec 11, 2022
1 parent c10cedb commit d9925a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sktime/classification/dictionary_based/_muse.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def _fit(self, X, y):

# Ridge Classifier does not give probabilities
if not self.support_probabilities:
self.clf = RidgeClassifierCV(alphas=np.logspace(-3, 3, 10), normalize=False)
self.clf = RidgeClassifierCV(alphas=np.logspace(-3, 3, 10))
else:
self.clf = LogisticRegression(
max_iter=5000,
Expand Down
2 changes: 1 addition & 1 deletion sktime/classification/dictionary_based/_weasel.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def _fit(self, X, y):

# Ridge Classifier does not give probabilities
if not self.support_probabilities:
self.clf = RidgeClassifierCV(alphas=np.logspace(-3, 3, 10), normalize=False)
self.clf = RidgeClassifierCV(alphas=np.logspace(-3, 3, 10))
else:
self.clf = LogisticRegression(
max_iter=5000,
Expand Down

0 comments on commit d9925a7

Please sign in to comment.