Bias and Variance trade off:

Bias-Variance trade off is better understood with darts. I guess everybody is familiar with darts where you throw a small arrow to the circular board and try to stick it in the center of the circular board or also called the bull’s eye. Now imagine you threw 10 such arrows.
There are 4 possibilities:
1.   all 10 arrows are scattered but in the center, which is called low bias high variance
2.   all 10 arrows are together near to each other but away from the center also called high bias low variance.
3.   all 10 arrows are away from the center and scattered well also called high variance high bias.
4.   all 10 arrows are near the center and not scattered more also called low variance and low bias which is what we need.
Generally, parametric algorithms have a high bias making them fast to learn and easier to understand but generally less flexible. In turn, they have lower predictive performance on complex problems that fail to meet the simplifying assumptions of the algorithms bias.

Decision trees are an example of a low bias algorithm, whereas linear regression is an example of a high-bias algorithm.

Comments

Popular posts from this blog

Boosting and AdaBoost algorithm.

Decision tree

Random forest algorithm