Open BartekPog opened 4 years ago
We have to handle class imbalance. One of the methods is multiplying the rows with rare classes to equalize the class frequency in train dataset.
Add the proper method and expand the interface to handle this feature.
This can be achieved by using SMOTE or ADASYN algorithm. Both have already been implemented in Imblearn library.
SMOTE
ADASYN
We have to handle class imbalance. One of the methods is multiplying the rows with rare classes to equalize the class frequency in train dataset.
Add the proper method and expand the interface to handle this feature.