def predict_proba(self, X):
        check_is_fitted(self, "clf_")
        X = check_array(X)

        return self.clf_.predict_proba(X)