Toolbox for imbalanced dataset in machine learning.
Project description
imbalanced-learn
imbalanced-learn is a python package offering a number of re-sampling techniques commonly used in datasets showing strong between-class imbalance. It is compatible with scikit-learn and is part of scikit-learn-contrib projects.
Documentation
Installation documentation, API documentation, and examples can be found on the documentation.
Installation
Dependencies
imbalanced-learn is tested to work under Python 2.7 and Python 3.5.
scipy(>=0.17.0)
numpy(>=1.10.4)
scikit-learn(>=0.17.1)
Installation
imbalanced-learn is currently available on the PyPi’s reporitories and you can install it via pip:
pip install -U imbalanced-learn
The package is release also in Anaconda Cloud platform:
conda install -c glemaitre imbalanced-learn
If you prefer, you can clone it and run the setup.py file. Use the following commands to get a copy from Github and install all dependencies:
git clone https://github.com/scikit-learn-contrib/imbalanced-learn.git cd imbalanced-learn python setup.py install
Testing
After installation, you can use nose to run the test suite:
make coverage
About
Most classification algorithms will only perform optimally when the number of samples of each class is roughly the same. Highly skewed datasets, where the minority is heavily outnumbered by one or more classes, have proven to be a challenge while at the same time becoming more and more common.
One way of addresing this issue is by re-sampling the dataset as to offset this imbalance with the hope of arriving at a more robust and fair decision boundary than you would otherwise.
- Re-sampling techniques are divided in two categories:
Under-sampling the majority class(es).
Over-sampling the minority class.
Combining over- and under-sampling.
Create ensemble balanced sets.
Below is a list of the methods currently implemented in this module.
- Under-sampling
Random majority under-sampling with replacement
Extraction of majority-minority Tomek links [1]
Under-sampling with Cluster Centroids
NearMiss-(1 & 2 & 3) [2]
Condensend Nearest Neighbour [3]
One-Sided Selection [4]
Neighboorhood Cleaning Rule [5]
Edited Nearest Neighbours [6]
Instance Hardness Threshold [7]
Repeated Edited Nearest Neighbours [14]
The different algorithms are presented in the following notebook.
This is a work in progress. Any comments, suggestions or corrections are welcome.
References:
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
Hashes for imbalanced_learn-0.1.7-py2-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 029d1c8503dbd88febdaa596248d4d8323b80104eb17a5b1f3f564820c2d7f62 |
|
MD5 | 19e55b55247d1285322f8e5d47459e48 |
|
BLAKE2b-256 | d46aba1840f6d190cf13c2ed623eea5a80e57cd88ae737d73cfd4ab082796dfa |