The accuracy of the forecast vs using all or part of the historical data #1095
-
Hi, This is my code:
Now, if I use Also, if I want to make the model adaptive to new acquired data points, I think I need to retrain the model from scratch every 4-10 hours (assuming that every data point is acquired every 5 mins) to have a reasonable amount of new data compared to the (prediction_horizon+m.n_lags) data points, correct? I did this image below, and this is my assumption regarding adaptability. Is it correct? My application takes a data point every 5mins and predicts the next 48 hours' horizon with 5mins resolution, it is more of an online application. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @ourownstory, |
Beta Was this translation helpful? Give feedback.
Hey @Msaleh87 you are correct, with autoregression enabled, we take n_lags datapoints as an input, to predict the next n_forecasts.
Re 2nd question: I think both approaches are valid. If the data adaptively shows similar behavior, then the pre-trained model (on the non-updated data) is capable of doing forecasts. An adaptive approach would give new weights, and therefore potentially shows a more informed forecast on the new data.