//! Sequence labeling algorithms: CRF, HMM, and Viterbi decoding.
//!
//! This module provides probabilistic sequence labeling tools suitable for
//! POS tagging, NER, chunking, and related structured prediction tasks.
pub use ;
pub use HMMTagger;
pub use ;
pub use ;