Experiment - Imbalanced class handling (SMOTE, class weights)
Problem:We want to classify if a transaction is fraudulent or not. The dataset is imbalanced: only 5% of transactions are fraud. The current model has 98% training accuracy but only 70% validation accuracy.
Current Metrics:Training accuracy: 98%, Validation accuracy: 70%, Validation F1-score: 0.45
Issue:The model is overfitting and performs poorly on the minority class (fraud). It struggles to detect fraud cases due to class imbalance.