Mean Absolute Error
Mean Absolute Error (MAE) is a metric for assessing Regression predictions. Simply take the average of the absolute error between all labels and predictions in the test set:
Step-by-step:
- Calculate error vector as labels - predictions
- Take the absolute values of the errors
- Take the mean of all values.
It's also known as L1 Loss or L1 Penalty because it takes the l1-norm of the error vector
An alternative to Root Mean-Squared Error.