Resampling strategies for regression
Project description
Resreg is a Python package for resampling imbalanced distributions in regression problems.
If you find resreg useful, please cite the following article:
Gado, J.E., Beckham, G.T., and Payne, C.M (2020). Improving enzyme optimum temperature prediction with resampling strategies and ensemble learning. J. Chem. Inf. Model. 60(8), 4098-4107.
If you use RO, RU, SMOTER, GN, or WERCS methods, also cite
Branco, P., Torgo, L., and Ribeiro, R.P. (2019). Pre-processing approaches for imbalanced distributions in regression. Neurocomputing. 343, 76-99.
If you use REBAGG, also cite
Branco, P., Torgo, L., and Ribeiro, R.P. (2018). REBAGG: Resampled bagging for imbalanced regression. In 2nd International Workshop on Learning with Imbalanced Domains: Theory and Applications. pp 67-81.
If you use precision, recall, or F1-score for regression, also cite
Torgo, L. and Ribeira, R.P. (2009). Precision and recall for regression. In International Conference on Discovery Science. pp332-346
Installation
Preferrably, install from GitHub source. The use of a virtual environment is strongly advised.
git clone https://github.com/jafetgado/resreg.git
cd resreg
pip install -r requirements.txt
python setup.py install
Or, install with pip (less preferred)
pip install resreg
Prerequisites
Python 3
Numpy
Scipy
Pandas
Scikit-learn
Usage
A regression dataset (X, y) can be resampled to mitigate the imbalance in the distribution with any of six strategies: random oversampling, random undersampling, SMOTER, Gaussian noise, WERCS, or Rebagg.
Random oversampling (RO): randomly oversample rare values selected by the user via a relevance function.
Random undersampling (RU): randomly undersample abundant values.
SMOTER: randomly undersample abundant values; oversample rare values by interpolation between nearest neighbors.
Gaussian noise (GN): randomly undersample abundant values; oversample rare values by adding Gaussian noise.
WERCS: resample the dataset by selecting instances using user-specified relevance values as weights.
REBAGG: Train an ensemble of Scikit-learn base learners on independently resampled bootstrap subsets of the dataset.
See the tutorial for more details.
Examples
import resreg
from sklearn.metrics import train_test_split
from sklearn.metrics import RandomForestRegressor
# Split dataset to training and testing sets
X_train, X_test, y_train, y_test = resreg.train_test_split(X, y, test_size=0.25)
# Resample training set with random oversampling
relevance = resreg.sigmoid_relevance(y, cl=None, ch=np.percentile(y, 90))
X_train, y_train = resreg.random_oversampling(X_train, y_train, relevance, relevance_threshold=0.5,
over='balance')
# Fit regressor to resampled training set
reg = RandomForestRegressor()
reg.fit(X_train, y_train)
y_pred = reg.predict(X_train, y_train)
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 Distributions
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 resreg-0.2-py3-none-any.whl.
File metadata
- Download URL: resreg-0.2-py3-none-any.whl
- Upload date:
- Size: 27.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.0.0.post20200309 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c12cbd179519254e89e09ec7174e3fd4f14ad584b53f078aff3a0276bfc07af2
|
|
| MD5 |
2372532aee7ddd8fbb254b18bb04eb18
|
|
| BLAKE2b-256 |
f254ca4ecc47ebd4327cd94f1804332ff1531473643eedae6a87f123fbe7d493
|