hmm/
lib.rs

1//! # Hidden Markov Model Library
2//!
3//! Currently this library implements Viterbi algorithm for estimating MAP
4//!
5
6pub mod models;
7mod matrices;