Ritam-Guha / Py_FS

A Python Package for Feature Selection
MIT License
57 stars 38 forks source link

Number of Features #22

Closed frknblcn closed 3 years ago

frknblcn commented 3 years ago

Hi Guha I want to use wrapper feature selection methods. My data consists of 200 features and I want to select the best 20 features. Is it available to select the max feature number in your code?

Rohit-Kundu commented 3 years ago

No. Wrapper based methods select the optimal feature subset using a learning algorithm in its crux. They don't give scores/ranks to assert feature importance. You can use the filter methods to select a specified number of features, but wrapper algorithms cannot do that.