Replies: 1 comment
|
If you want to predict just one step ahead, I would assume that the results wouldn't differ much compared to I would set |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I would like to build a
DeepVARmodel that predicts only one-step ahead. Given my hourly data, this means I would only like to predict the next hour.I am not sure how
prediction_lengthworks exactly and whether it is advisable to useprediction_length=1or to build a model with a larger prediction_length but just use the first prediction.I see three different options for my use case:
prediction_length=1prediction_length=1but context_length > 1prediction_length = 24, and take only first predictionAny insights?
All reactions