Help Needed: Kalman Filter with PyMC and pytensor.tensor.KalmanFilter Error

Hi Dimitri,

There are Kalman Filters implemented in pymc-experimental, you can take a look at the docs here. If you just want to fit a TP-VAR, you can do it with the VARMAX model. Docs here, example notebook here. Just a heads up that there are some known bugs in the main branch I’m working on squashing, but if you’re willing to be a bit of a guinea pig I’d be happy to try to help.

That said, there are many ways to write down a VAR in PyMC. The TP part will just come from putting time-varying priors on the coefficient matrix, e.g. using a GaussianRandomWalk (or MvGaussianRandomWalk). After you do this it would be trivial to implement without having to go through the hassle of using a full statespace setup. For example, you can implement it has a 2d convolution, or as a simple regression over lagged data.

It’s not really clear to me what your objective is with the Kalman Filter code you posted. Do you have missing data you want to interpolate, or is that just an algorithm you’re familiar with for fitting these kinds of models? In principal you don’t need it; PyMC can derive the log likelihood of a sequence of observations without using the KF recursions.

2 Likes