Pipeline#

The imblearn.pipeline module implements utilities to build a composite estimator, as a chain of transforms, samples and estimators.

Pipeline(steps, *[, transform_input, ...])

Pipeline of transforms and resamples with a final estimator.

make_pipeline(*steps[, memory, ...])

Construct a Pipeline from the given estimators.