bolt vs t5 #261
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
For 1, what forecast is being plotted in the two cases? Are you invoking For 2, chronos-t5 is inherently sampling based, so as long as you observe one output sample, fixing the seed is the only way to make the model deterministic. If instead you want to look more at the “full” predictive distribution, looking at multiple samples (or quantiles) is the way to go: increasing Edit: you can also set |
Beta Was this translation helpful? Give feedback.
For 1, what forecast is being plotted in the two cases? Are you invoking
predict
and plotting (one slice of) its output tensor? If that’s the case, then you’re plotting one sample trajectory from chronos-t5 (which has the same random-walk-like behavior as historical data) and one quantile for chronos-bolt (this model directly produces quantile estimates, no samples).For 2, chronos-t5 is inherently sampling based, so as long as you observe one output sample, fixing the seed is the only way to make the model deterministic. If instead you want to look more at the “full” predictive distribution, looking at multiple samples (or quantiles) is the way to go: increasing
num_samples
(default 20) …