Multistep forecast models? #68
-
Is it the case that all models provide strictly recursive/autoregressed forecasts? If so, is it on the roadmap to support "direct" multistep models, like as wrappers around any sklearn models that support vector output? If this is already supported, could someone point me to a usage example? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 15 replies
-
Hi @caseytomlin, can you provide an example of what you mean? Do these models take the same input and produce the predictions for the whole window? If that is the case you could use mlforecast to do the feature engineering with MLForecast.preprocess and then fit those models to the output. |
Beta Was this translation helpful? Give feedback.
-
To me the documentation of recursive strategy is unclear. So is the documentation for Multi-output model. How are "dynamic_dfs" in the "predict" method handelt in general as well as related to recursive and multi-model? |
Beta Was this translation helpful? Give feedback.
Hi @caseytomlin, can you provide an example of what you mean? Do these models take the same input and produce the predictions for the whole window? If that is the case you could use mlforecast to do the feature engineering with MLForecast.preprocess and then fit those models to the output.