We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The pipeliine object offers a way to concatenate many of the objects in this module in a easy, pain-free way.
Example usage:
from UnbalancedDataset import TomekLinks, UnderSampler, SVM_SMOTE, Pipeline x, y = ... (your data set) pip = Pipeline(x, y) my_pipeline = [TomekLinks(), SVM_SMOTE(svm_args = {'class_weight' = 'auto'}), UnderSampler(ratio = 2)] x', y' = pip.pipeline(my_pipeline)
Home
Over-Sampling
Under-Sampling
Pipeline