
Answer-first summary for fast verification
Answer: F1 score
For a binary classification task like predicting customer churn, the F1 score (Option A) is the most appropriate evaluation metric. This is because: 1. **Binary Classification Context**: Customer churn prediction involves classifying customers into two categories: those who will churn and those who will not. This requires metrics specifically designed for classification problems. 2. **Class Imbalance Consideration**: In real-world churn scenarios, there's typically a significant class imbalance, with far fewer customers churning than staying. The F1 score effectively handles this imbalance by balancing precision (the proportion of correctly predicted churns among all predicted churns) and recall (the proportion of actual churns correctly identified). 3. **Business Relevance**: For churn prediction, both false positives (incorrectly predicting churn) and false negatives (missing actual churns) have business consequences. The F1 score provides a single metric that considers both aspects, making it more informative than accuracy alone in imbalanced scenarios. 4. **Comparison with Other Options**: - **Mean Squared Error (MSE, Option B)**: This is a regression metric that measures the average squared difference between predicted and actual values. It's inappropriate for classification tasks where outputs are categorical. - **R-squared (Option C)**: This is also a regression metric that explains the proportion of variance in the dependent variable explained by the model. It doesn't apply to classification problems. - **Time used to train the model (Option D)**: This measures computational efficiency, not model performance on the classification task itself. 5. **Alternative Classification Metrics**: While other metrics like accuracy, precision, recall, ROC-AUC, or confusion matrices could also be considered, the F1 score is particularly well-suited for imbalanced binary classification problems like churn prediction, as it provides a balanced view of model performance that accounts for both type I and type II errors.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
No comments yet.