-
We want to fine-tune Chronos but all our time series have lengths less than 512, which is the Chornos context window. Can this affect the performance of Chronos? Is there information available related to this topic? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@dafmdev from a purely technical standpoint, training or fine-tuning with shorter series should not be an issue: PAD tokens will be used where needed, and the model will learn to ignore them. But if you fine-tune on data with context length up to N < 512, then you probably want to also make sure to provide data with context length up to N at prediction time, since the model may not know what to do with longer contexts at that point. |
Beta Was this translation helpful? Give feedback.
@dafmdev from a purely technical standpoint, training or fine-tuning with shorter series should not be an issue: PAD tokens will be used where needed, and the model will learn to ignore them.
But if you fine-tune on data with context length up to N < 512, then you probably want to also make sure to provide data with context length up to N at prediction time, since the model may not know what to do with longer contexts at that point.