DP-100 · Question #42
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might…
The correct answer is B. No. No, the proposed metrics are wrong for this task. Accuracy, Precision, Recall, F1 score, and AUC are classification metrics - they measure how well a model assigns data points to discrete categories. Linear regression is a regression model that predicts a continuous numerical…
Question
Options
- AYes
- BNo
How the community answered
(20 responses)- A20% (4)
- B80% (16)
Explanation
No, the proposed metrics are wrong for this task. Accuracy, Precision, Recall, F1 score, and AUC are classification metrics - they measure how well a model assigns data points to discrete categories. Linear regression is a regression model that predicts a continuous numerical output (artwork price). Applying classification metrics to a regression model is conceptually incorrect and technically not possible without first thresholding the output into classes. The correct metrics for evaluating a linear regression model are regression metrics such as Mean Absolute Error, Root Mean Squared Error, R-squared (coefficient of determination), and Relative Absolute Error.
Topics
Community Discussion
No community discussion yet for this question.