AutoTimes
AutoTimes copied to clipboard
Official implementation for "AutoTimes: Autoregressive Time Series Forecasters via Large Language Models"
When I run sh scripts/time_series_forecasting/short_term/AutoTimes_M4.sh, I encounter the following error. How can I resolve this? > Traceback (most recent call last): > File "/data/work/TimeLLM/AutoTimes/run.py", line 124, in > exp.train(setting) >...
I found the data loader only loads one feature column during training: ```python seq_x = self.data_x[s_begin:s_end, feat_id:feat_id+1] seq_y = self.data_y[r_begin:r_end, feat_id:feat_id+1] ``` May I know how can I load multivariate...
Hi, Is there any walk-through case to train custom dataset? I get confused with some config error of training custom daily timeseries data, like: ``` python -u run.py --model_id DS_IC_test...
Hi, Does AutoTimes support llama3 or any latest model? How's the workload of adapting to a new model? Thank you for your great job.
Thank you for your outstanding work on this project and for making it open source! I would like to inquire if multi-GPU training is supported. I noticed a switch on...