Bias

In a model, it is the systematic error that is cause due to wrong assumptions made during the learning process.

Variance

It is the measure of the deviation of the data from it’s mean position.

where,

  • Predicted target value
  • Actual target value
  • Dataset

center

Reducing Bias

  • Increase model complexity / Parameters.
  • May cause over-fitting.

Reducing Variance

  • Cross validation.
  • Feature selection (selecting only necessary features reduces model complexity and variance error).
  • Regularization.