(self, X, y)
| 1199 | return self.classes_[y_pred] |
| 1200 | |
| 1201 | def score(self, X, y): |
| 1202 | from sklearn.metrics import accuracy_score |
| 1203 | |
| 1204 | return accuracy_score(y, self.predict(X)) |
| 1205 | |
| 1206 | def __sklearn_tags__(self): |
| 1207 | return Tags( |
nothing calls this directly
no test coverage detected