Mean Absolute Percentage Error (Mape)
[!def] Mean Absolute Percentage Error
$$
MAPE = \frac{1}{N} \sum_i \frac{|y_i - \hat{y_i}|}{y_i} * 100
$$
Pros of MAPE
- Errors are normalized on a common scale; hence easy to understand
- The problem of negative and positive cancelling each other is not there
Cons of MAPE
- Need to avoid values with ground truth 0 because of $y_i$ in denominator
- Penalizes negative errors more than positive
- Change on actual value, change the error even the error value is same