Skip to main content

Python Feature Selection library from ITMO University

Project description

ITMO_FS

Feature selection library in Python

Package information: Python 2.7 Python 3.6 License

Install with

pip install https://github.com/LastShekel/ITMO_FS/tarball/master

Current available algorithms:

Filters Wrappers Hybrid
Spearman correlation Add Del MeLiF
Pearson correlation Backward selection
Fit Criterion Sequential Forward Selection
F ratio
Gini index
Information Gain
Minimum Redundancy Maximum Relevance
VDM

To use basic filter:

from sklearn.datasets import load_iris
from filters.Filter import * # provides you a filter class, basic measures and cutting rules

data, target = load_iris(True)
res = Filter("SpearmanCorr", GLOB_CR["Best by value"](0.9999)).run(data, target)
print("SpearmanCorr:", data.shape, '--->', res.shape)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ITMO_FS-0.1.tar.gz (1.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page