Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Interpret F1 for Imbalanced Classification

EasyModel Evaluation00:00
Practice interviewer
In session
5 left
00:00

Your question is Interpret F1 for Imbalanced Classification. Take a moment with it on the right.

Talk me through your thinking if you like. When you're confident, submit your answer and I'll grade it like a real screen (7/10 or better passes).

You need to log in / sign up to chat or submit.

Problem

Context

ShopSafe is building a binary classifier to detect fraudulent orders before fulfillment. Fraud is rare, so leadership is concerned that the current evaluation dashboard may overstate model quality by focusing on accuracy.

Current Performance

The team evaluated a logistic regression model on 100,000 recent orders. Only 1,000 orders were actually fraudulent.

MetricValue
Accuracy0.972
Precision0.750
Recall0.180
F1 Score0.290
AUC-ROC0.840
Fraud prevalence0.010

Confusion matrix counts:

Predicted FraudPredicted Legitimate
Actual Fraud180820
Actual Legitimate6098,940

The Problem

The product manager sees 97.2% accuracy and believes the model is ready for launch. However, the risk team argues that the model is still weak because it misses most fraudulent orders. You need to explain what the F1 score means, why it matters here, and whether it is a better summary metric than accuracy.

Requirements

  1. Define precision, recall, and F1 score using the numbers above.
  2. Explain how the F1 score is calculated and interpret the value 0.290.
  3. Compare F1 score with accuracy for this imbalanced dataset.
  4. Explain why a model can have high accuracy but poor fraud detection performance.
  5. Recommend 2-3 actions to improve the model or evaluation process.

Constraints

  • Each missed fraud order costs about $120 on average.
  • Each false positive triggers a manual review costing $4.
  • Review capacity is limited to 400 flagged orders per day.