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

pub mod models;
mod matrices;