rhmm 0.0.2

A rust implementation of hidden markov models.
Documentation
1
2
3
4
5
6
7
//! Base module containing core HMM traits and types

pub mod hmm;
pub mod types;

pub use hmm::HiddenMarkovModel;
pub use types::*;