Predict does not take into account future reggressors. #1662
Answered
by
PeterKData
PeterKData
asked this question in
Q&A - get help using NeuralProphet
|
Hello, I have a model with future regressors and n_lag = 1 and n_forecasts = 288. I create dataframe for prediction that contains all future known reggresors. However the prediction itself does not take them into account and thus the prediction is invalid. If I use the same model without autocorrelation. It take the predictions in to account, because it disregards the n_forecasts parameter. Could you help me with it? Does anybody faces the same issue? I have double checked everything. Thank you |
Answered by
PeterKData
Nov 14, 2024
Replies: 1 comment
|
It is actually due to the issue with make_future_dataframe which deletes the regressors from the model. #1650 |
0 replies
Answer selected by
PeterKData
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It is actually due to the issue with make_future_dataframe which deletes the regressors from the model. #1650