Coder Social home page Coder Social logo

package not predicting about lazypredict HOT 5 CLOSED

andamchako avatar andamchako commented on May 20, 2024
package not predicting

from lazypredict.

Comments (5)

shankarpandala avatar shankarpandala commented on May 20, 2024

@andamchako What are the datatypes of you input ?

from lazypredict.

Tarrannum avatar Tarrannum commented on May 20, 2024

I am facing the same issue, the dtypes selected are int64 and float64

from lazypredict.

shankarpandala avatar shankarpandala commented on May 20, 2024

I am facing the same issue, the dtypes selected are int64 and float64

Can you show any reproducible example ?

from lazypredict.

AbhiPawar5 avatar AbhiPawar5 commented on May 20, 2024

Hi @shankarpandala, Thanks for creating such an amazing package!
I have encountered the same issue mentioned above - AttributeError: select_dtypes not found

Environment : Google Colab

  • Python - 3.7.11
  • lazypredict==0.2.9

Objective : Text classification using CountVectorizer and Tfidf, target label - 0 or 1

Sample code :

sentences = df[['cleaned_text']].values
y = df['label'].values


sentences_train, sentences_test, y_train, y_test = train_test_split(sentences, y, 
                                                                    test_size=0.25, random_state=1000)

#BOW
count_vect = CountVectorizer(ngram_range=(1, 1))
count_vect.fit(sentences_train.ravel())

X_train = count_vect.fit_transform(sentences_train.ravel())
X_test  = count_vect.transform(sentences_test.ravel())

import lazypredict
from lazypredict.Supervised import LazyClassifier
clf = LazyClassifier(verbose=0, ignore_warnings=True, custom_metric=None)
models,predictions = clf.fit(X_train, X_test, y_train, y_test)

from lazypredict.

jdvala avatar jdvala commented on May 20, 2024

Hi @AbhiPawar5 I have created a package inspired by lazypredict for text classification. Please check it out, comments and suggestions are welcome
https://github.com/jdvala/lazytext

from lazypredict.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.