transcribe-rs 0.3.9

A simple library to help you transcribe audio
Documentation
1
2
3
4
5
6
7
8
9
mod ctc;
mod greedy;
mod sentencepiece;
pub mod tokens;

pub use ctc::{ctc_greedy_decode, CtcDecoderResult};
pub use greedy::GreedyDecoder;
pub use sentencepiece::{parse_byte_token, sentencepiece_to_text};
pub use tokens::{load_vocab, SymbolTable};