What is explained variance score and how does it differ from ?
hardAnswer
- .
- It measures the fraction of variance the model captures.
- uses the sum of squared residuals directly.
- They are equal *only when the residuals have zero mean* (i.e., predictions are unbiased on average).
- If predictions are systematically biased, explained variance can be high while is much lower.
- Use for model comparison; use explained variance to diagnose bias-vs-variance in the errors.
Check yourself — multiple choice
- They're always identical
- Explained variance = 1 − ; equals only when residuals have zero mean
- Explained variance is always negative
- It's the same as MAPE
Explained when residuals have zero mean; otherwise diagnoses bias.
#metrics-regression
Practise Supervised Learning
215 interview questions in this topic.
Related questions
- Adding a feature raised R^2. Does that mean the model improved?
- Can R^2 be negative? What does that mean?
- When is quantile regression more useful than mean (OLS) regression?
- What criterion does a regression tree use to choose splits?
- RMSE vs MAE — how do you pick?
- What is Huber loss and why is it a compromise between MAE and MSE?