Avatar for the Nixtla user
Nixtla
statsforecast
BlogDocsChangelog

Performance History

Latest Results

Index the per-season alpha in the seasonal ES models `SeasonalExponentialSmoothing` and its optimized variant fit one alpha per season, so `model_["alpha"]` has shape `(season_length,)`. Two places copied from the scalar `SimpleExponentialSmoothing` use it unindexed, and both raise: SeasonalExponentialSmoothing(season_length=12, alpha=0.1).fit(y) .predict(h=6, level=[80]) ValueError: operands could not be broadcast together with shapes (6,) (12,) .simulate(h=6, n_paths=4) ValueError: operands could not be broadcast together with shapes (12,) (4,) `predict` needs the alpha of the season each step falls in, and the existing `k = ((steps - 1) // m) + 1` already gives the cycle, so the season is `(steps - 1) % m`. `simulate` already computes `s_idx = i % m` for `levels` on the line above and needs the same index for `alpha`. The scalar models are untouched - their `alpha` is 0-d and their two call sites read differently, so nothing that currently works changes. Point forecasts are identical before and after; only the paths that raised now return values.
VenishPaneliya:seasonal-es-per-season-alpha
53 minutes ago
fix: validate conformal interval horizon
DresdenGman:fix/conformal-interval-h-validation
3 days ago
fix damped ETS formula
hotfix/damped-ets
3 days ago
remove signature test
hotfix/AutoETS
3 days ago
Merge branch 'main' into fix/contributing-workflow-typo
Risto0211:fix/contributing-workflow-typo
4 days ago
remove tests
VenishPaneliya:ets-maa-interval-coefficient
4 days ago

Latest Branches

CodSpeed Performance Gauge
0%
Index the per-season alpha in the seasonal ES models#1226
1 hour ago
43f427b
VenishPaneliya:seasonal-es-per-season-alpha
CodSpeed Performance Gauge
0%
3 days ago
95d894b
DresdenGman:fix/conformal-interval-h-validation
CodSpeed Performance Gauge
0%
4 days ago
2fe73d7
hotfix/damped-ets
© 2026 CodSpeed Technology
Home Terms Privacy Docs