Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 949 Bytes

Bias_Variance_Tradeoff.md

File metadata and controls

13 lines (9 loc) · 949 Bytes

Bias is the simplifying assumptions made by the model to make the target function easier to approximate.

Variance is the amount that the estimate of the target function will change given different training data.

Trade-off is tension between the error introduced by the bias and the variance

Screenshot (27)

Training set error will tell you about bias, if it is high, bias is generally high

Dev set or test set error will tell you about variance, if it is high then generally variance is high

image

The above image has high bias because it is mostly linear, but a curved function was needed to fit them well

It is also high variance because it is overfitting on those noises by being too flexible in the middle.