Skip to content

theopsall/multiSmote

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)