Skip to content

Commit ae08455

Browse files
committed
Fix various failures due to missing imports
1 parent 82d86c8 commit ae08455

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

pymc_extras/statespace/filters/utilities.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@
22

33
from pytensor.tensor.nlinalg import matrix_dot
44

5-
from pymc_extras.statespace.core.representation import (
6-
PytensorRepresentation,
7-
quad_form_sym,
8-
)
9-
from pymc_extras.statespace.utils.constants import JITTER_DEFAULT
5+
from pymc_extras.statespace.utils.constants import JITTER_DEFAULT, NEVER_TIME_VARYING, VECTOR_VALUED
106

117

128
def decide_if_x_time_varies(x, name):

pymc_extras/statespace/models/SARIMAX.py

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,19 @@
99
from pymc_extras.statespace.core.statespace import PyMCStateSpace, floatX
1010
from pymc_extras.statespace.models.utilities import (
1111
make_default_coords,
12-
make_seasonal_harmonics,
12+
make_harvey_state_names,
13+
make_SARIMA_transition_matrix,
1314
)
1415
from pymc_extras.statespace.utils.constants import (
15-
JITTER_DEFAULT,
16-
LONG_MATRIX_NAMES,
17-
MISSING_FILL,
18-
SHORT_NAME_TO_LONG,
16+
ALL_STATE_AUX_DIM,
17+
ALL_STATE_DIM,
18+
AR_PARAM_DIM,
19+
MA_PARAM_DIM,
20+
OBS_STATE_DIM,
21+
SARIMAX_STATE_STRUCTURES,
22+
SEASONAL_AR_PARAM_DIM,
23+
SEASONAL_MA_PARAM_DIM,
1924
)
20-
import pymc_extras.statespace as pmss
2125

2226

2327
def _verify_order(p, d, q, P, D, Q, S):

0 commit comments

Comments
 (0)