Confusion about metrics in a Deep AR+ forecasting model

0

I just built a Deep AR+ model, and the metrics came out as follows:

Weighted Absolute Percentage Error (WAPE) 0.8064 Mean Absolute Scaled Error (MASE) 0.7720 Root Mean Squared Error (RMSE) 17909.7861 Mean Absolute Percentage Error (MAPE) 1.5993

Now I understand that WAPE and MAPE are percentages, but are these 0.8064% and 1.5993%? Or are they 80.64% and 159.93%?? It is unclear.

The first is absolutely awesome. The second obviously diabolical.

Mark
asked 6 months ago224 views
2 Answers
0

When I read the documentation on the metrics, and we can just use MAPE as an example, your value of 1.5993 means that the absolute value of the difference between the predicted and observed is almost 1.6 times that of the observed value, which is probably not good. If you just focus on the numerator of that equation, if the observed and predicted are close, that value will be small, and when you divide by the observed, it will be even smaller, less than 1.

MAPE is a mean, so on the average, your predictions are not very close to the real/true/observed values

Reference: https://docs.aws.amazon.com/forecast/latest/dg/metrics.html

answered 6 months ago
0

Yeah that is what I thought having read the same docs; and a machine learning friend tells me the same.

I asked Google too, since I built a similar model on Vertex and the metrics were similar, and I think they are incorrect in telling me that the errors are the lesser of the options!

Mark
answered 6 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions