Cannot get fitted_values of cross_validation if max_horizon is not None #193
Unanswered
elisevansartefact
asked this question in
Q&A
Replies: 1 comment
-
Hey, thanks for raising this. This was an oversight on my side, I'll push a fix soon. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Suppose I have a forecast horizon N. I have noticed that if, instead of the default recursive prediction method, I specify max_horizon = N to train N models - i.e. one per horizon - then I am unable to use the fitted_values = True parameter. It leads to the error:
If I do not specify
max_horizon
then this does not happen - it works as expected and I can recover the fitted values model.cross_validation_fitted_values() with no problem.Is there another way to get the fitted cross_validation values if I train >1 model?
Beta Was this translation helpful? Give feedback.
All reactions