oxicuda-seq 0.4.0

OxiCUDA: Sequence Models & Structured Prediction (HMM/CRF/Kalman/MRF/alignment)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Linear / Extended Kalman filtering, RTS smoothing, EM parameter learning,
//! Unscented Kalman Filter, and Particle Filter.

pub mod ekf;
pub mod kalman_em;
pub mod kalman_filter;
pub mod linalg;
pub mod particle;
pub mod rts_smoother;
pub mod ukf;

pub use ekf::{ExtendedKalmanFilter, ExtendedKalmanResult};
pub use kalman_em::{KalmanEmConfig, kalman_em};
pub use kalman_filter::{KalmanFilter, KalmanResult};
pub use particle::{ParticleConfig, ParticleFilter, ParticleResult};
pub use rts_smoother::{RtsResult, rts_smoother};
pub use ukf::{UkfParams, UkfResult, UnscentedKalmanFilter};