Skip to content

Future values for multivariate predictions #179

Answered by winedarksea
KajetanPoliak asked this question in Q&A
Discussion options

You must be logged in to vote

Firstly, you should know that future_regressor is optional. Internally, for machine learning models (ie MultivariateRegression with regression models like LightGBM and ExtraTrees) it will automatically create a feature sets based on parameters. These lagged features you are creating here are more for models like ARIMA which can accept a regressor but won't have a multivariate lag unless this future regressor is passed.

Try passing summarize=None to create_regressor. By default it lags all features and then aggregates, down to 10, to keep things faster and cleaner. Removing the summarization will make it more clear what is being done.

I don't quite understand what you are asking with how …

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@KajetanPoliak
Comment options

@winedarksea
Comment options

Answer selected by KajetanPoliak
@KajetanPoliak
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants