File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,13 @@ Changelog
58
58
pass the `values_format ` parameter to the :class: `ConfusionMatrixDisplay `
59
59
plot() call. :pr: `15937 ` by :user: `Stephen Blystone <blynotes> `.
60
60
61
+ :mod: `sklearn.naive_bayes `
62
+ ..........................
63
+
64
+ - |Fix | removed abstract method `_check_X ` from :class: `naive_bayes.BaseNB `
65
+ that could break downstream projects inheriting from this deprecated
66
+ public base class. :pr: `15996 ` by :user: `Brigitta Sipőcz <bsipocz> `.
67
+
61
68
:mod: `sklearn.semi_supervised `
62
69
..............................
63
70
Original file line number Diff line number Diff line change @@ -51,12 +51,6 @@ def _joint_log_likelihood(self, X):
51
51
predict_proba and predict_log_proba.
52
52
"""
53
53
54
- @abstractmethod
55
- def _check_X (self , X ):
56
- """Validate input X
57
- """
58
- pass
59
-
60
54
def predict (self , X ):
61
55
"""
62
56
Perform classification on an array of test vectors X.
You can’t perform that action at this time.
0 commit comments