Views
No views yet
ssl encoder has no head and produces no transcript).| File | Size | Head | Vocabulary | Output |
|---|---|---|---|---|
gigaam-v3-e2e-rnnt-{f16,q8_0,q4_k}.gguf | 452 / 249 / 154 MB | RNN-T | SentencePiece 1024 | punctuation + casing + ITN — best WER (8.4 % avg) |
gigaam-v3-e2e-ctc-{f16,q8_0,q4_k}.gguf | 449 / 247 / 152 MB | CTC | SentencePiece 256 | punctuation + casing + ITN, faster decode |
gigaam-v3-rnnt-{f16,q8_0,q4_k}.gguf | 449 / 246 / 152 MB | RNN-T | 33 Cyrillic chars | lowercase, no punctuation |
gigaam-v3-ctc-{f16,q8_0,q4_k}.gguf | 449 / 246 / 151 MB | CTC | 33 Cyrillic chars | lowercase, no punctuation |
gigaam-v3-e2e-rnnt-q8_0.gguf unless you have a reason not to — it is the
lowest-WER variant, emits punctuation and casing, and its transcript is
identical to the PyTorch reference.1crispasr --backend gigaam -m gigaam-v3-e2e-rnnt-q8_0.gguf -f audio.wav
2# or let the registry fetch it:
3crispasr --backend gigaam -m auto --auto-download -f audio.wavmodeling_gigaam.py (crispasr-diff gigaam <model> <ref> <wav>), on
GigaAM's own example.wav:| variant | mel | encoder (cos) | transcript vs PyTorch |
|---|---|---|---|
| f16 (all four) | 1.000000 | 1.000000 | byte-identical |
| q8_0 (all four) | 1.000000 | 0.9974 – 0.9988 | byte-identical |
q4_k ctc, rnnt | 1.000000 | 0.95 – 0.99 | byte-identical |
q4_k e2e_ctc | 1.000000 | 0.982 | one spurious trailing , |
q4_k e2e_rnnt | 1.000000 | 0.987 | content identical; 4 words lose their capital letter |
encoder.pre.* subsampling
convs and the decode head (joint.* / decoder.* / head.ctc.*) are kept at
source precision — the mel is un-normalized log-mel, so subsampling rounding
error would otherwise cascade through all 16 conformer blocks, and the head is
a blank-vs-token argmax where a flipped decision derails the greedy decode.1python models/convert-gigaam-to-gguf.py \
2 --model ai-sage/GigaAM-v3 --revision e2e_rnnt \
3 --output gigaam-v3-e2e-rnnt-f16.gguf
4./build/bin/crispasr-quantize gigaam-v3-e2e-rnnt-f16.gguf \
5 gigaam-v3-e2e-rnnt-q8_0.gguf q8_0ai-sage/GigaAM-v3.
Please cite the upstream model when you use these weights.ai-sage.mit. This repository redistributes under the same terms; it grants no rights the upstream licence does not.