This message was deleted.
# statsforecast
s
This message was deleted.
m
@José Morales: can you guide Diego in the right direction?
d
Thank you @Max (Nixtla) and no rush guys.
j
Hey. Are you using conformal intervals?
d
Yes I am. Like this:
intervals = ConformalIntervals(h=48, n_windows=2)
models = [MSTL(season_length = [24, 24*7],prediction_intervals=intervals)]
The rest is the same. P.S.: it used to be
models = [MSTL(season_length = [24, 24*7])]
on 1.5.0
j
That's most likely the reason. There's currently a bug that doesn't allow using the native intervals of the trend forecaster in MSTL, so the notebook from 1.5 produced native intervals with the AutoETS model and now they can only be generated through conformal intervals, which produces wider intervals in this case I suppose, so you don't get any outliers. https://github.com/Nixtla/statsforecast/pull/625 will fix that
d
Ah ok. Thanks for the clarification. @Valeriy you probably want to write this down in case you see this issue around.
👍 1