pure-predict icon indicating copy to clipboard operation
pure-predict copied to clipboard

Machine learning prediction in pure Python

Results 5 pure-predict issues
Sort by recently updated
recently updated
newest added

**Describe the bug** An error is raised when making an inference with a converted sklearn model built with `CountVectorizer(binary=True)`. It's ok if `binary=False` **To Reproduce** ``` from sklearn.feature_extraction.text import CountVectorizer...

bug

I tried converting pipeline to pure_sklearn. The pipeline consist of TfidfVectorizer and MultinomialNB. The output of TfIdfVectorizer is sparse array as input to MultinomialNB. However, the naive bayes predict method...

enhancement

Hi, could you kindly add support for converting Stacking Regressors?

enhancement

`pure_sklearn.map.convert_estimator` function crashes during a conversion of a sklearn unit having a functional variable (a CountVectorizer with a preprocessor parameter in my case). `ValueError: Object contains invalid type: ` **To...

bug

**Describe the bug** In the file: https://github.com/Ibotta/pure-predict/blob/master/pure_sklearn/tree/_classes.py#L37 Line# 37: It seems that "[-1]" at the end is not needed. Otherwise, there will be issues if there are 10 variables or...

bug