Boosting by resampling outperforms reweighting for imbalanced data classifiers.
Boosting can improve classifier performance, especially with imbalanced data. Two boosting methods exist: reweighting and resampling. Resampling can work with any base learner, while reweighting needs learners that handle example weights. In a study comparing the two methods with imbalanced data, resampling was found to perform as well as or better than reweighting. Therefore, resampling is generally preferred over reweighting for boosting.