Feature selection algorithms based on Relief-based methods
Project description
scikit-rebate
This package includes a scikit-learn-compatible Python implementation of ReBATE, a suite of Relief-based feature selection algorithms for Machine Learning. These Relief-based algorithms (RBAs) are designed for feature weighting/selection as part of a machine learning pipeline (supervised learning). Presently this includes the following core RBAs: ReliefF, SURF, SURF*, MultiSURF*, MultiSURF, SWRF*, SWRF, MultiSWRF*, MultiSWRF, MultiSWRFDB*, MultiSWRFDB, and μ-Relief. Additionally, an implementation of the iterative TuRF mechanism and VLSRelief is included. It is still under active development and we encourage you to check back on this repository regularly for updates.
These algorithms offer a computationally efficient way to perform feature selection that is sensitive to feature interactions as well as simple univariate associations, unlike most currently available filter-based feature selection methods. The main benefit of Relief-based algorithms is that they identify feature interactions without having to exhaustively check every pairwise interaction, thus taking significantly less time than exhaustive pairwise search.
Certain algorithms have run parameters that the user can specify, or if not specified, default to preset values (e.g. ReliefF’s parameter for ‘k’ number of nearest neighbors).
Relief-based algorithms are commonly applied to genetic analyses, where epistasis (i.e., feature interactions) is common. However, the algorithms implemented in this package can be applied to almost any supervised, structured data set and support:
-
Feature sets that are discrete/categorical, continuous-valued or a mix of both
-
Data with missing values
-
Binary endpoints (i.e., classification)
-
Multi-class endpoints (i.e., classification)
-
Continuous endpoints (i.e., regression)
Built into this code is a strategy to 'automatically' detect these relevant characteristics from the loaded data.
Of our two initial ReBATE software releases, this scikit-learn compatible version primarily focuses on ease of incorporation into a scikit-learn analysis pipeline. This code is most appropriate for scikit-learn users, Windows operating system users, beginners, or those looking for the most recent ReBATE developments.
An alternative 'stand-alone' version of ReBATE is also available that focuses on improving run-time with the use of Cython for optimization. This implementation also outputs feature names and associated feature scores as a text file by default.
License
Please see the repository license for the licensing and usage information for scikit-rebate.
Generally, we have licensed scikit-rebate to make it as widely usable as possible.
Installation
scikit-rebate is built on top of the following existing Python packages:
-
NumPy
-
SciPy
-
scikit-learn
All of the necessary Python packages can be installed via the Anaconda Python distribution, which we strongly recommend that you use. We also strongly recommend that you use Python 3 over Python 2 if you're given the choice.
NumPy, SciPy, and scikit-learn can be installed in Anaconda via the command:
conda install numpy scipy scikit-learn
Once the prerequisites are installed, you should be able to install scikit-rebate with a pip command:
pip install skrebate
Please file a new issue if you run into installation problems.
Usage
Basic Usage
To use an algorithm from ReBATE as a feature selection method:
# Import necessary packages
import pandas as pd
from skrebate import ReliefF
# Load the example dataset
genetic_data = pd.read_csv(
'./data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.csv')
# Separate the features and labels from the dataset
features, labels = genetic_data.drop('class', axis=1).values, genetic_data['class'].values
# Apply the ReliefF algorithm for feature selection
fs = ReliefF()
fs.fit(features, labels)
# Print out the results
feature_name = genetic_data.drop('class', axis=1).columns
fs.summary(feature_name=feature_name)
>>> Feature name Feature importances Feature rank
>>> P2 0.12330000 1
>>> P1 0.11892500 2
>>> N0 -0.00018125 3
>>> N10 -0.00075625 4
>>> N13 -0.00320625 5
>>> N14 -0.00402500 6
>>> N4 -0.00582500 7
>>> N1 -0.00595000 8
>>> N8 -0.00653750 9
>>> N12 -0.00696250 10
>>> N16 -0.00705000 11
>>> N17 -0.00740625 12
>>> N5 -0.00788750 13
>>> N11 -0.00822500 14
>>> N9 -0.00826250 15
>>> N2 -0.00871875 16
>>> N3 -0.00872500 17
>>> N7 -0.00991875 18
>>> N6 -0.01038750 19
>>> N15 -0.01044375 20
Using as End-to-end Pipeline
We have designed the Relief-based algorithms to be integrated directly into scikit-learn machine learning workflows. For example, the ReliefF algorithm can be used as a feature selection step in a scikit-learn pipeline as follows:
# Import necessary packages
import pandas as pd
from sklearn.pipeline import make_pipeline
from skrebate import ReliefF
from sklearn.ensemble import RandomForestClassifier
from sklearn.model_selection import train_test_split
from sklearn.metrics import accuracy_score
# Load the example dataset
genetic_data = pd.read_csv(
'./data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.csv')
# Separate the features and labels from the dataset
features, labels = genetic_data.drop('class', axis=1).values, genetic_data['class'].values
# Split the data to training and testing
X_train, X_test, y_train, y_test = train_test_split(features, labels, test_size=0.3, random_state=42)
# Make pipeline
clf = make_pipeline(
ReliefF(n_features_to_select=2),
RandomForestClassifier(n_estimators=100)
)
# Train the model
clf.fit(X_train, y_train)
# Evaluate the model on testing set
y_pred = clf.predict(X_test)
accuracy = accuracy_score(y_test, y_pred)
print(f"Accuracy: {accuracy:.3f}")
>>> Accuracy: 0.781
For more information on the Relief-based algorithms available in this package and how to use them, please refer to our usage documentation.
Contributing to scikit-rebate
We welcome you to check the existing issues for bugs or enhancements to work on. If you have an idea for an extension to scikit-rebate, please file a new issue so we can discuss it.
Please refer to our contribution guidelines prior to working on a new feature or bug fix.
Citing scikit-rebate
If you use scikit-rebate in a scientific publication, please consider citing the following paper:
Ryan J. Urbanowicz, Randal S. Olson, Peter Schmitt, Melissa Meeker, Jason H. Moore (2018). Benchmarking Relief-Based Feature Selection Methods for Bioinformatics Data Mining. Journal of Biomedical Informatics, 85, 168-188. DOI: 10.1016/j.jbi.2018.07.015
BibTeX entry:
@article{Urbanowicz2018Benchmarking,
author = {Urbanowicz, Ryan J. and Olson, Randal S. and Schmitt, Peter and Meeker, Melissa and Moore, Jason H.},
title = {Benchmarking Relief-Based Feature Selection Methods for Bioinformatics Data Mining},
journal = {Journal of Biomedical Informatics},
volume = {85},
pages = {168--188},
year = {2018},
doi = {10.1016/j.jbi.2018.07.015},
url = {https://doi.org/10.1016/j.jbi.2018.07.015}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file skrebate-0.8.tar.gz.
File metadata
- Download URL: skrebate-0.8.tar.gz
- Upload date:
- Size: 44.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29c104019aaa277ecb533d13f06f08806dd753cfdb14a27201c17dde8e198059
|
|
| MD5 |
e8a40669dd1e36746fc55e39897aa941
|
|
| BLAKE2b-256 |
004dc83d52c040bd33b3e42cfd9a06b706f1ad2f87ccc17e436c86e22946fce6
|
File details
Details for the file skrebate-0.8-py3-none-any.whl.
File metadata
- Download URL: skrebate-0.8-py3-none-any.whl
- Upload date:
- Size: 54.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6f57d03b1dfe24dac51a353367ce4fc20d5451db223e497e1a77b581a73380c
|
|
| MD5 |
b11c7ccd33a23f370567ac0b6162da57
|
|
| BLAKE2b-256 |
812ec8efdd4861ee7db36986cd3c6fbf5bada3ef768662f7e9941a57024dd98a
|