mape
MAPE stands for mean absolute percentage error, a statistic used to measure forecast accuracy. It expresses the average of the absolute errors as a percentage of the actual values, making it possible to compare forecast performance across series with different scales. In its common form, for a set of n observations, A_t are the actual values and F_t are the forecasts, MAPE = (100/n) * sum_{t=1..n} |(A_t - F_t)/A_t|. Because the errors are taken in absolute value, MAPE conveys the typical size of forecast errors but not their direction.
MAPE is widely used in time series forecasting, demand planning, and sales forecasting to assess how close
Variants such as symmetric MAPE (sMAPE) attempt to address asymmetry by using a different denominator, for example