ctclib 0.1.0

A collection of utilities related to CTC, with the goal of being fast and highly flexible.
1
2
3
4
5
6
7
8
9
10
11
mod decoder;
mod dict;
mod lm;

pub use decoder::{
    BeamSearchDecoder, BeamSearchDecoderOptions, Decoder, DecoderOutput, GreedyDecoder,
};
pub use dict::Dict;
#[cfg(feature = "kenlm")]
pub use lm::kenlm::KenLM;
pub use lm::{LMStateRef, ZeroLM, LM};