/multiSmote

A multi-label approach of the SMOTE algorithm

Primary LanguagePythonMIT LicenseMIT

MultiSMOTE

A multi-label approach for SMOTE algorithm

APM Generic badge


Synthetic Minority Oversampling Technique which supports multi-label data. The specific approach, resamples from the representative data that belongs only at the minority class.

Usage

from multiSmote.multi_smote import MultiSmote as mlsmote

smote = mlsmote()
new_x, new_y = smote.multi_smote(X, y)