Bias and Variance trade off:

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
Post a Comment