Questions: Imbalanced Classification and Class Weighting

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A fraud detection model reports 99.8% accuracy on a dataset where 0.2% of transactions are fraudulent. What is the most important concern about this result?

AThe accuracy is impressive and the model should be deployed immediately
BThe model is overfit and needs regularization to improve generalization
C99.8% accuracy is achievable by predicting 'not fraud' for every transaction — the model may be catching zero actual fraud cases
DThe accuracy threshold is too low; fraud models require 99.99% accuracy
Question 2 Multiple Choice

You have a medical diagnosis model with 50:1 class imbalance (healthy vs. diseased). Which intervention most directly addresses the training algorithm's bias toward predicting 'healthy' for every patient?

ACollecting more data from healthy patients to improve the majority-class decision boundary
BAssigning higher loss weights to misclassified diseased patients so the optimizer treats each missed diagnosis as seriously as many missed healthy predictions
CIncreasing model complexity so the decision boundary can separate the classes
DReducing the learning rate to allow the model to find a more balanced optimum
Question 3 True / False

A model that achieves 99% accuracy on an imbalanced dataset is likely performing well on the minority class.

TTrue
FFalse
Question 4 True / False

Lowering the classification threshold (e.g., from 0.5 to 0.1) in a probabilistic classifier increases recall for the minority class at the cost of more false positives.

TTrue
FFalse
Question 5 Short Answer

Why is accuracy a misleading metric for imbalanced classification, and what alternative metrics should be used?

Think about your answer, then reveal below.