Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 417 Bytes

README.md

File metadata and controls

23 lines (12 loc) · 417 Bytes

FeatureSelect

Tiny implementation of feature selection algorithms.

Example Usage

To extract the most predictive three features from the test1.txt file and store them in output.txt using mutual information,

python select.py test1.txt mutual_inf 3 output.txt

Available Techniques

The second parameter can have the following values,

'chi_squared' 'mutual_inf'