qualia_core_db/solvers/learning/sequential/mod.rs
1//! Sequential / temporal models (PRML ch 13) — estimators over time-indexed data.
2//!
3//! - [`hmm`] — discrete Hidden Markov Model (scaled forward, Viterbi, Baum-Welch).
4//!
5//! Linear dynamical systems / Kalman filtering land here next (build order in
6//! `stats_plan.md`).
7
8pub mod hmm;
9pub mod kalman;
10
11pub use hmm::{baum_welch, Hmm};
12pub use kalman::KalmanFilter;