|
17 | 17 | ALL_STATE_AUX_DIM,
|
18 | 18 | ALL_STATE_DIM,
|
19 | 19 | AR_PARAM_DIM,
|
20 |
| - EXOGENOUS_DIM, |
| 20 | + EXOG_STATE_DIM, |
21 | 21 | MA_PARAM_DIM,
|
22 | 22 | OBS_STATE_DIM,
|
23 | 23 | SARIMAX_STATE_STRUCTURES,
|
@@ -315,7 +315,7 @@ def param_names(self):
|
315 | 315 | def data_info(self) -> dict[str, dict[str, Any]]:
|
316 | 316 | info = {
|
317 | 317 | "exogenous_data": {
|
318 |
| - "dims": (TIME_DIM, EXOGENOUS_DIM), |
| 318 | + "dims": (TIME_DIM, EXOG_STATE_DIM), |
319 | 319 | "shape": (None, self.k_exog),
|
320 | 320 | }
|
321 | 321 | }
|
@@ -403,7 +403,7 @@ def param_dims(self):
|
403 | 403 | "ma_params": (MA_PARAM_DIM,),
|
404 | 404 | "seasonal_ar_params": (SEASONAL_AR_PARAM_DIM,),
|
405 | 405 | "seasonal_ma_params": (SEASONAL_MA_PARAM_DIM,),
|
406 |
| - "beta_exog": (EXOGENOUS_DIM,), |
| 406 | + "beta_exog": (EXOG_STATE_DIM,), |
407 | 407 | }
|
408 | 408 | if self.k_endog == 1:
|
409 | 409 | coord_map["sigma_state"] = None
|
@@ -438,7 +438,7 @@ def coords(self) -> dict[str, Sequence]:
|
438 | 438 | if self.Q > 0:
|
439 | 439 | coords.update({SEASONAL_MA_PARAM_DIM: list(range(1, self.Q + 1))})
|
440 | 440 | if self.k_exog > 0:
|
441 |
| - coords.update({EXOGENOUS_DIM: self.exog_state_names}) |
| 441 | + coords.update({EXOG_STATE_DIM: self.exog_state_names}) |
442 | 442 | return coords
|
443 | 443 |
|
444 | 444 | def _stationary_initialization(self):
|
|
0 commit comments