You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a current problem? Please describe.
It is currently a bit cumbersome to evaluate both multi- and univariate models in a single setting. Suppose we have one/many multivariate time series at hand and want to forecast with a multivariate model and also with (a collection of) univariate ones, per variate independently. We currently need to maintain a list of this ourselves and if we are looking at a univarite model, loop over the variates.
Describe proposed solution
A wrapper around univariate models that applies fit()/predict()/... to the wrapped models, each per variate and else forwards most properties.
Describe potential alternatives
Have users implement it each time again.
Additional context
This is especially important if one wants to see how relvant the dynamics between multiple variates are. Related to #1844.
The text was updated successfully, but these errors were encountered:
A similar wrapper is used for the sklearn based model (MultiOutputRegressor) in darts, and after discussing with @dennisbader, we agreed that it would be great to extend it to the other univariate models. Would you be willing to open a PR with the implementation that you seem to already have?
It will be quite important to document it so that it's very clear that in the "normal" multivariate prediction, the various target values will interact with each other whereas in "stacked" univariate prediction, they won't.
Eventually, fit()ing such a model should optionally be parallelized. This is relevant since some local models (e.g. AutoARIMA and AutoThea) still take a fair bit of time to fit.
Is your feature request related to a current problem? Please describe.
It is currently a bit cumbersome to evaluate both multi- and univariate models in a single setting. Suppose we have one/many multivariate time series at hand and want to forecast with a multivariate model and also with (a collection of) univariate ones, per variate independently. We currently need to maintain a list of this ourselves and if we are looking at a univarite model, loop over the variates.
Describe proposed solution
A wrapper around univariate models that applies
fit()
/predict()
/... to the wrapped models, each per variate and else forwards most properties.Describe potential alternatives
Have users implement it each time again.
Additional context
This is especially important if one wants to see how relvant the dynamics between multiple variates are. Related to #1844.
The text was updated successfully, but these errors were encountered: