Sliding window forecast #172
Replies: 1 comment 2 replies
-
Hi. Are you using v0.8.0? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I am considering using mlforecast for my forecasting project that uses sliding window approach. I have a question regarding the correct way to do this without model refitting. Based on the end-to-end walkthrough, I understand that once you have made prediction and new target data is available, you can incorporate this new data using MLForecast.ts.update. However, I discovered that for subsequent new prediction, instead of using the previously incorporated target data (lag1) and the target data that came before it for subsequent lags (my model uses consecutive lags=[1,2,3,...]), the model will use the previous forecasts for subsequent lags. Is my current approach wrong? What is the correct way to do this?
Beta Was this translation helpful? Give feedback.
All reactions