svod-model 0.1.0-alpha.3

Pretrained models inference abstraction.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! CTC head for GigaAM.
//!
//! Submodules:
//! - [`head`] — `CTCHead` (Conv1d + log-softmax projection).
//! - [`jit`] — `CtcHeadJit` (head-only; encoder runs in the shared
//!   [`crate::gigaam::GigaAmEncoderJit`]).
//!
//! The unified model wrapper itself lives in [`crate::gigaam::model`].

mod head;
mod jit;

pub use head::*;
pub use jit::*;