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 requires the following dependencies:
Python (>= 3.7)
NumPy (>= 1.14.6)
SciPy (>= 1.1.0)
Scikit-learn (>= 1.0.1)
Additionally, imbalanced-learn requires the following optional dependencies:
Pandas (>= 0.25.0) for dealing with dataframes
Tensorflow (>= 2.4.3) for dealing with TensorFlow models
Keras (>= 2.4.3) for dealing with Keras models
The examples will requires the following additional dependencies:
Matplotlib (>= 2.2.3)
Seaborn (>= 0.9.0)
Installation
From PyPi or conda-forge repositories
imbalanced-learn is currently available on the PyPi’s repositories and you can install it via pip:
pip install -U imbalanced-learn
The package is release also in Anaconda Cloud platform:
conda install -c conda-forge imbalanced-learn
From source available on GitHub
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 pip install .
Be aware that you can install in developer mode with:
pip install --no-build-isolation --editable .
If you wish to make pull-requests on GitHub, we advise you to install pre-commit:
pip install pre-commit pre-commit install
Testing
After installation, you can use pytest to run the test suite:
make coverage
Development
The development of this scikit-learn-contrib is in line with the one of the scikit-learn community. Therefore, you can refer to their Development Guide.
About
If you use imbalanced-learn in a scientific publication, we would appreciate citations to the following paper:
@article{JMLR:v18:16-365, author = {Guillaume Lema{{\^i}}tre and Fernando Nogueira and Christos K. Aridas}, title = {Imbalanced-learn: A Python Toolbox to Tackle the Curse of Imbalanced Datasets in Machine Learning}, journal = {Journal of Machine Learning Research}, year = {2017}, volume = {18}, number = {17}, pages = {1-5}, url = {http://jmlr.org/papers/v18/16-365} }
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 addressing 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]
Condensed Nearest Neighbour [3]
One-Sided Selection [4]
Neighboorhood Cleaning Rule [5]
Edited Nearest Neighbours [6]
Instance Hardness Threshold [7]
Repeated Edited Nearest Neighbours [14]
AllKNN [14]
- Over-sampling
Random minority over-sampling with replacement
SMOTE - Synthetic Minority Over-sampling Technique [8]
SMOTENC - SMOTE for Nominal and Continuous [8]
SMOTEN - SMOTE for Nominal [8]
bSMOTE(1 & 2) - Borderline SMOTE of types 1 and 2 [9]
SVM SMOTE - Support Vectors SMOTE [10]
ADASYN - Adaptive synthetic sampling approach for imbalanced learning [15]
KMeans-SMOTE [17]
ROSE - Random OverSampling Examples [19]
Mini-batch resampling for Keras and Tensorflow
The different algorithms are presented in the sphinx-gallery.
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.9.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed2df83f1247b03fbc0362f5ffbf6f8bd76d02a7e0ebfef3be1ead39683ca10d |
|
MD5 | 8f78ae5f1180d81631cef8c3ae5a84ca |
|
BLAKE2b-256 | 8392a4d1f42b29e9f62f9c3fad68d28282a9610a02801e1d89945702f981dd8e |