Skip to main content

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

  1. Python 3

  2. Numpy

  3. Scipy

  4. Pandas

  5. 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.

  1. Random oversampling (RO): randomly oversample rare values selected by the user via a relevance function.

  2. Random undersampling (RU): randomly undersample abundant values.

  3. SMOTER: randomly undersample abundant values; oversample rare values by interpolation between nearest neighbors.

  4. Gaussian noise (GN): randomly undersample abundant values; oversample rare values by adding Gaussian noise.

  5. WERCS: resample the dataset by selecting instances using user-specified relevance values as weights.

  6. 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


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

resreg-0.2-py3-none-any.whl (27.4 kB view details)

Uploaded Python 3

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

Hashes for resreg-0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c12cbd179519254e89e09ec7174e3fd4f14ad584b53f078aff3a0276bfc07af2
MD5 2372532aee7ddd8fbb254b18bb04eb18
BLAKE2b-256 f254ca4ecc47ebd4327cd94f1804332ff1531473643eedae6a87f123fbe7d493

See more details on using hashes here.

Supported by

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