Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 2.14 KB

File metadata and controls

38 lines (25 loc) · 2.14 KB

Continuous Discrete Linear Gaussian State Space Models

  • Implementation of Continuous-discrete Linear Gaussian State Space Models
    • We provide a model class definition

      • NB: t0 and t1 refer to $t_k$ and $t_{k+1}$, not necessarily regularly sampled
    • We provide a set of filtering and smoothing algorithms described below.

Implemented algorithms

Parameter inference

  • Parameter (point)-estimation is possible via stochastic gradient descent based MLE

  • We do not provide a parameter (point)-estimation via EM

    • The m-step requires MLE for continuous time parameters

Pending

  • Note that the codebase currently only supports inputs at measurement times, i.e., $u$ is observed at times $t_k$ as given in t_emissions.

  • Note that even if the model definition seems to allow for time-varying emission weights, the implementation is not ready to do so (dynamax wasn't either)