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
//! RNN-T (transducer) head for GigaAM. Layout mirrors the reference Python
//! `RNNTDecoder` / `RNNTJoint` / `RNNTHead` in
//! `submodules/GigaAM/gigaam/decoder.py`: multi-layer LSTM predictor +
//! two-Linear-sum + ReLU + Linear + log-softmax joint. LSTM gate order is
//! PyTorch's `[i, f, g, o]` so checkpoints load without remapping.

pub(crate) mod backend;
pub(crate) mod head;
pub(crate) mod jit;
pub(crate) mod joint;
pub(crate) mod predictor;

pub(crate) use backend::RnntStepBackend;
pub(crate) use head::RnntHead;