Ads Exp 8
Ads Exp 8
THEORY
Class imbalance occurs when one class significantly outnumbers the other in a dataset.
b) Algorithm-Level Approaches
● Cost-Sensitive Learning
○ Assigns higher misclassification penalties for the minority class.
● Ensemble Methods (Bagging & Boosting)
○ Random Forest & XGBoost have built-in options to address imbalance.
c) Hybrid Approaches
SMOTE is a powerful oversampling technique that generates synthetic examples for the
minority class instead of simply duplicating existing instances.
2. Advantages of SMOTE
3. Limitations of SMOTE
By comparing F1-scores before and after SMOTE, we can observe its effectiveness in
handling imbalance.
CONCLUSION
In this experiment, we learn about and implement overcoming class imbalance using
SMOTE techniques.