Error when finetune with "wide_multivariate" data type #95
Unanswered
HenryLee829
asked this question in
Q&A
Replies: 2 comments 5 replies
-
I'm guessing your time series are too short |
Beta Was this translation helpful? Give feedback.
3 replies
-
Hello, may I ask you a question? What’s the difference between the dataset_type options: 'wide' and 'wide_multivariate'? If I use 'wide,' is it still possible to perform multivariate time series prediction? For instance, my dataset contains 7 channels—can I predict all of them simultaneously using 'wide' instead of 'wide_multivariate'? I’m asking because when I processed the data using 'wide_multivariate,' it resulted in only one sample. I don't know whether it is correct |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I use
python -m uni2ts.data.builder.simple train Datasets/data.csv --date_offset '2015-12-27 07:36:00'
to generate a wide .csv file to an arrow file, then use
python -m cli.train -cp conf/finetune run_name=train model=moirai_1.0_R_small data=train val_data=train
to finetune the model, it works out well.
However when I want to try to change the data type into wide_multivariate, I use
python -m uni2ts.data.builder.simple train Datasets/data.csv --date_offset '2015-12-27 07:36:00' --dataset_type wide_multivariate
and using the same command to finetune the model, there's an error:
AssertionError: Sample length must be less than or equal to max_length (512)
I don't know how to fix this. Could you give me some advice? Thanks a lot.
Beta Was this translation helpful? Give feedback.
All reactions