transcribe-rs 0.3.2

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

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