Hi, thanks for the project. I am really interested in it.
But while finetuning with my own dataset, I've got confused.
Here's what I understood:
- The model's input is a window of size {context_length}
- During training step, the model forecasts the sequence length of {prediction_length} at once.
- When inference(prediction), the model forecasts one at a time autoregressively for length of {prediction_length}
Am I understanding right?
And how can I forecast long sequences?
For example,
I have fintuned the model and have 100k sequences of time series dataset for test.
I want to forecast(predict) all of them except the first {context_size} of test dataset.
Should I just get {prediction_length} larger? or am I understanding something wrong?
Thank you, hope for your reply.
Hi, thanks for the project. I am really interested in it.
But while finetuning with my own dataset, I've got confused.
Here's what I understood:
Am I understanding right?
And how can I forecast long sequences?
For example,
I have fintuned the model and have 100k sequences of time series dataset for test.
I want to forecast(predict) all of them except the first {context_size} of test dataset.
Should I just get {prediction_length} larger? or am I understanding something wrong?
Thank you, hope for your reply.