-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using autots model for predicting,not forecasting #191
Comments
If I understand you correctly, it sounds like the only model here that will work is Cassandra, which was designed for explainability. You could optimize it with the AutoTS class ( make sure |
I think the "varying input features" part of my issue is misleading. I am just trying to say I will predict some samples in the same interval with the training data, not the future. Input features are same but of course their values are changing for different samples. In this case, is Cassandra still your advice or "include_history=True" is enough? |
I think so. Try it and see, then get back to me if that isn't what you were looking for |
To my understanding, AutoTS must be used for optimum Cassandra model and hyperparameters must be stored. After that, new Cassandra model must be created and fitted. I tried to do it with code below: auto_ts_model = AutoTS(model_list=['Cassandra'], ensemble=None, transformer_max_depth=0) I managed to fit auto_ts_model and taking parameters from it. But when I am trying to fit Cassandra model, it gives error as "ValueError: infer_frequency failed due to input not being pandas DF or DT index". My input contains 6 columns. 4 of them are input columns, 1 is output and the other one is date_col. Can you give me some idea about solution? Thanks. |
The issue is just with data formatting. Your AutoTS run is probably wrong too, although it is running successfully. windowed_tek_ornek_train['tarih'] = pd.to_datetime(windowed_tek_ornek_train['tarih'])
windowed_tek_ornek_train = windowed_tek_ornek_train.set_index('tarih') then pass it without the date_col and value_col params |
Hello.
I spent some time with autots for my time series prediction task. It seems it is only for forecasting the next "n" timesteps according to past data. However, i need to find optimum model and use it for same time interval with training dataset. Because my task is predicting some graphs which are in the same time interval but with varying input features. I am not sure it is possible but I am curious about it.
Thanks in advance.
The text was updated successfully, but these errors were encountered: