Skip to content

Commit 82d86c8

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

File tree

4 files changed

+6
-13
lines changed

4 files changed

+6
-13
lines changed

pymc_extras/model/transforms/autoreparam.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
from pymc.pytensorf import toposort_replace
2525
from pytensor.graph.basic import Apply, Variable
2626
from pytensor.tensor.random.op import RandomVariable
27-
from pymc_extras.model.transforms.autoreparam import vip_reparametrize
2827

2928
_log = logging.getLogger("pmx")
3029

pymc_extras/statespace/core/representation.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@
55
import pytensor.tensor as pt
66

77
from pymc_extras.statespace.utils.constants import (
8-
JITTER_DEFAULT,
9-
LONG_MATRIX_NAMES,
10-
MISSING_FILL,
11-
SHORT_NAME_TO_LONG,
8+
NEVER_TIME_VARYING,
9+
VECTOR_VALUED,
1210
)
1311

1412
floatX = pytensor.config.floatX

pymc_extras/statespace/filters/kalman_filter.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,8 @@
1212
from pytensor.tensor.slinalg import solve_triangular
1313

1414
from pymc_extras.statespace.filters.utilities import (
15-
compute_forecast_error_cov,
16-
compute_kalman_gain,
17-
compute_predicted_state,
18-
compute_predicted_state_cov,
19-
compute_updated_state,
20-
compute_updated_state_cov,
15+
quad_form_sym,
16+
split_vars_into_seq_and_nonseq,
2117
stabilize,
2218
)
2319
from pymc_extras.statespace.utils.constants import JITTER_DEFAULT, MISSING_FILL

pymc_extras/statespace/filters/kalman_smoother.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
from pytensor.tensor.nlinalg import matrix_dot
66

77
from pymc_extras.statespace.filters.utilities import (
8-
compute_predicted_state,
9-
compute_predicted_state_cov,
8+
quad_form_sym,
9+
split_vars_into_seq_and_nonseq,
1010
stabilize,
1111
)
1212
from pymc_extras.statespace.utils.constants import JITTER_DEFAULT

0 commit comments

Comments
 (0)