-
Hi, I have a question regarding the prediction of multiple time series. When I specify the id_col in |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
The id_col is used to compute features per serie, but the model is trained using all series. |
Beta Was this translation helpful? Give feedback.
-
Hi, Then it means that the training is performed as follows (Dependend Multivariate forecasting): Or as follows (Independent Multi Series Forecasting): Im asking this because of course if you use MLP or any linear regression model, dependent training is possible. But if you are using XGBoost how you are predicting multiple Y1,Y2,Y3 if unique id is not used as a feature? |
Beta Was this translation helpful? Give feedback.
The id_col is used only as an identifier, it isn't used as a feature. If you want to use it as a feature you have to create an extra column and pass it to
static_features
as is done here. If your model doesn't support categorical features you'll have to encode it.