Mean Squared Error (MSE)

Mean Squared Error Formula

MSE=1ni=1n(YiY^i)2

Pros:

  1. Convex function, so one Global Minima
  2. No Local Minima
  3. If error is big, penalizes higher by squaring them
  4. Good for predicting outliers as give more weight to them

Cons:

  1. Bad at Handling Outliers as it will give more weights to the outliers
    1. better to use Mean Absolute Error (MAE)
  2. Same error for one big error and many small errors

Related Notes