Giter VIP home page Giter VIP logo

Comments (3)

yuanjie-ai avatar yuanjie-ai commented on August 20, 2024

image

from feature-selector.

free-free avatar free-free commented on August 20, 2024

Make sure you have called identify_*() method before calling remove method.

from feature-selector.

ghayth82 avatar ghayth82 commented on August 20, 2024

I am facing the same issue even I call fs.identify_collinear(correlation_threshold = 0.95) train_removed = fs.remove(methods = 'all')

`2 features with a correlation magnitude greater than 0.95.


AttributeError Traceback (most recent call last)
in
1 fs.identify_collinear(correlation_threshold = 0.95)
----> 2 train_removed = fs.remove(methods = 'all')

~\AppData\Roaming\Python\Python36\site-packages\feature_selector\feature_selector.py in remove(self, methods, keep_one_hot)
460
461 # Need to use one-hot encoded data as well
--> 462 data = self.data_all
463
464 print('{} methods have been run\n'.format(list(self.ops.keys())))

AttributeError: 'FeatureSelector' object has no attribute 'data_all'
`

also when I try to use one method I get below error, even I ran the method before :
`
fs.identify_collinear(correlation_threshold = 0.95)

2 features with a correlation magnitude greater than 0.95.

train_removed = fs.remove(methods="collinear")


NotImplementedError Traceback (most recent call last)
in
----> 1 train_removed = fs.remove(methods="collinear")

~\AppData\Roaming\Python\Python36\site-packages\feature_selector\feature_selector.py in remove(self, methods, keep_one_hot)
480 # Check to make sure the method has been run
481 if method not in self.ops.keys():
--> 482 raise NotImplementedError('%s method has not been run' % method)
483
484 # Append the features identified for removal

NotImplementedError: c method has not been run

`

from feature-selector.

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.