Replies: 1 comment 1 reply
-
This is a common question, because things are different here than a basic machine learning regression and it gets confusing. You should not be providing hand-crafted features here like you might for an ML model, only inputting information, some of which will be Your input Models, both multivariate and univariate, can also use Your best bet is to start with just passing your time series of interest in to the dataframe, then adding in your extra covariates next. Follow the production_example.py and examine the shape and index of the input data |
Beta Was this translation helpful? Give feedback.
-
Hi,
First I would say I am pretty new to timeseries prediction and I would like to thank you all for buliding up this helpful package, I really love the idea of automating the process so as to save effort.
So when I was looking into the docs, I got some questions regarding on how AutoTS chooses the target varibales in a df with more than one feature. I tried to use create_regressor to make regressor but that doesn't seem appropriate as it is neither letting me to dedicate a target variable nor asking me to provide the range of features used to faciliate the prediction of target variable.
I would like to ask if I should use some other methods to dedicate a target variable or I simply just feed AutoTS with the dataframe and let it decide which one is?
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions