We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f90709c commit f2a84d5Copy full SHA for f2a84d5
pymc_experimental/statespace/models/ETS.py
@@ -391,7 +391,8 @@ def state_names(self):
391
if self.trend:
392
states += ["trend"]
393
if self.seasonal:
394
- states += [f"L{i}.season" for i in range(1, self.seasonal_periods + 1)]
+ states += ["seasonality"]
395
+ states += [f"L{i}.season" for i in range(1, self.seasonal_periods)]
396
397
if self.k_endog > 1:
398
states = [f"{name}_{state}" for name in self.endog_names for state in states]
0 commit comments