InterviewSolution
Saved Bookmarks
| 1. |
What is Bias-Variance trade-off? Explain. |
|
Answer» Mathematically the ERROR emerging from any model can be broken down into 3 major components. Error(X) = Square(Bias) + Variance + Irreducible Error It is important to handle or address the bias error and variance error which is in control. We can’t do much for irreducible error.
When we are trying to build a model with greater accuracy, for better performance of the model, it is critical to strike a balance between bias and variance so that errors can be minimized and the gap between ACTUAL and predicted outcomes can be reduced. Hence balance between Bias and Variance needs to be maintained. |
|