Skip to content

Commit

Permalink
Update MRO in SVDD to satisfy scikit-learn#14884
Browse files Browse the repository at this point in the history
  • Loading branch information
ivannz committed Jan 10, 2020
1 parent f1e9cc3 commit 1247a98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sklearn/svm/_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1318,7 +1318,7 @@ def predict(self, X):
return np.asarray(y, dtype=np.intp)


class SVDD(BaseLibSVM, OutlierMixin):
class SVDD(OutlierMixin, BaseLibSVM):
"""Support Vector Data Description (SVDD) for Unsupervised Outlier Detection.
Estimate the support of a high-dimensional distribution by finding the
Expand Down

0 comments on commit 1247a98

Please sign in to comment.