gigastt-core 2.20.0

Core inference engine for gigastt — GigaAM v3 ONNX Runtime, model management, quantization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Engine unit tests, split by concern.

pub(super) use super::*;
use crate::inference::WordInfo;

pub(super) fn word(text: &str, start: f64, end: f64) -> WordInfo {
    WordInfo::new(text, start, end, 1.0, None)
}

mod backends;
mod load;
mod mock;
mod paths;
mod stream;
mod transcribe;