Add delay for n_lags ? #678
Unanswered
AchilleSoulie
asked this question in
Q&A - get help using NeuralProphet
Replies: 0 comments
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 was wondering if there was a way to add a delay in n_lags for the AR-Net. I haven't seen an aleary existing feature but more a way around.
For example with a lag of 7, instead of using the last
[1, 7]
entries from the dataset, use the entries[delay, 7 + delay]
as input for the AR-Net.To explain why such a feature, it's because for the data I want to use NeuralProphet on, I might not have the last 7 entires available at the time of prediction and I'm afraid that, if I specify
n_lags = lags + delay
, it will still focus too much on the latest data wich are available during training but not in production.Thanks in advance !
Beta Was this translation helpful? Give feedback.
All reactions