(self, *args, **kwargs)
| 39 | return self.predict_return |
| 40 | |
| 41 | def predict_proba(self, *args, **kwargs): |
| 42 | if not self.fitted: |
| 43 | raise NotFittedError |
| 44 | |
| 45 | return self.predict_proba_return |
| 46 | |
| 47 | def score(self, *args, **kwargs): |
| 48 | return self.score_return |
no outgoing calls