Fitting Size Impact #192
-
Does the fitting size, specifically the number of unique time series in train_data when using |
Beta Was this translation helpful? Give feedback.
Answered by
abdulfatir
Nov 5, 2024
Replies: 1 comment 6 replies
-
Chronos is a univariate model. Each time series is forecasted independently. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Arsa-Nik I looked deeper into this and my conclusion is still that it is related to the inherent uncertainty in the model for this specific time series. Here's what's going on:
AutoGluon sorts the time series dataframe by item ID, so when you use
n
andm
, then
time series will be second in the batch vs. when you useID_1
andID_2
, theID_1
time series will stay at the first place. Note that there's nothing special aboutID_1
andID_2
and you can reproduce the same behavior with setting the index tom
in the first case andm
andn
in the second.Nevertheless, it is interesting that the randomness in the
ID_x
case is very similar. This is not always the case, however, as you can observe i…