SMOTE
SMOTE, which stands for Synthetic Minority Over-sampling Technique, is a data augmentation method used to address class imbalance in machine learning. It was introduced to reduce the bias of classifiers toward the majority class by creating synthetic examples of the minority class rather than simply duplicating existing ones.
The basic SMOTE algorithm operates in the feature space of the minority class. For each minority example,
Variants and related approaches extend SMOTE to address specific challenges. Borderline-SMOTE focuses on minority samples near
Limitations include the potential to create ambiguous samples in overlapped class regions, the introduction of noise,