Which solution will meet these requirements?
Apply anomaly detection to remove outliers from the training dataset before training.
Apply Synthetic Minority Oversampling Technique (SMOTE) to the training dataset before training.
Apply normalization to the features of the training dataset before training.
Apply undersampling to the training dataset before training.
Explanations:
Anomaly detection does not address the class imbalance, which is likely causing prediction issues.
SMOTE generates synthetic samples for the minority class, addressing class imbalance in the dataset.
Normalization only scales feature values; it does not address the issue of class imbalance.
Undersampling reduces the majority class, potentially losing important information and worsening model performance.