Views
No views yet
| Quantization | Download | Size | WER (FLEURS ru) |
|---|---|---|---|
| F32 | gigaam-v3-e2e-ctc-F32.gguf | 843 MB | 5.50% |
| F16 | gigaam-v3-e2e-ctc-F16.gguf | 428 MB | 5.50% |
| Q8_0 | gigaam-v3-e2e-ctc-Q8_0.gguf | 260 MB | 5.50% |
| Q6_K | gigaam-v3-e2e-ctc-Q6_K.gguf | 216 MB | 5.56% |
| Q5_K_M | gigaam-v3-e2e-ctc-Q5_K_M.gguf | 195 MB | 5.58% |
| Q4_K_M | gigaam-v3-e2e-ctc-Q4_K_M.gguf | 174 MB | 5.57% |
gigaam author package measured on the same manifest: 6.93%; the 1.4 pp gap is upstream rejecting 5 long (>25 s) utterances with Too long wav file, use 'transcribe_longform' method. (counted as 100% deletion errors). On the 770-utt subset both sides decode, transcribe.cpp matches upstream exactly. ai-sage does not publish a FLEURS ru WER; this number is measured here.1git clone git@github.com:handy-computer/transcribe.cpp.git
2cd transcribe.cpp
3cmake -B build && cmake --build build1build/bin/transcribe-cli \
2 -m gigaam-v3-e2e-ctc-Q8_0.gguf \
3 input.wavffmpeg -i input.mp3 -ar 16000 -ac 1 output.wavThe section below is reproduced from ai-sage/GigaAM-v3 at commitcec030bfor offline reference. The upstream card is the authoritative source.
ssl — self-supervised HuBERT–CTC encoder pre-trained on 700,000 hours of Russian speechctc — ASR model fine-tuned with a CTC decoderrnnt — ASR model fine-tuned with an RNN-T decodere2e_ctc — end-to-end CTC model with punctuation and text normalizatione2e_rnnt — end-to-end RNN-T model with punctuation and text normalizationGigaAM-v3 training incorporates new internal datasets: callcenter conversations, speech with background music, natural speech, and speech with atypical characteristics.
the models perform on average 30% better on these new domains, while maintaining the same quality as previous GigaAM generations on public benchmarks.GigaAM-v3 and other existing models over diverse domains.| Set Name | V3_CTC | V3_RNNT | T-One + LM | Whisper |
|---|---|---|---|---|
| Open Datasets | 3.0 | 2.6 | 5.7 | 12.0 |
| Golos Farfield | 4.5 | 3.9 | 12.2 | 16.7 |
| Natural Speech | 7.8 | 6.9 | 14.5 | 13.6 |
| Disordered Speech | 20.6 | 19.2 | 51.0 | 59.3 |
| Callcenter | 10.3 | 9.5 | 13.5 | 23.9 |
| Average | 9.2 | 8.4 | 19.4 | 25.1 |
e2e_ctc and e2e_rnnt) produce punctuated, normalized text directly.
In end-to-end ASR comparisons of e2e_ctc and e2e_rnnt against Whisper-large-v3, using Gemini 2.5 Pro as an LLM-as-a-judge, GigaAM-v3 models win by an average margin of 70:30.1from transformers import AutoModel
2
3revision = "e2e_rnnt" # can be any v3 model: ssl, ctc, rnnt, e2e_ctc, e2e_rnnt
4model = AutoModel.from_pretrained(
5 "ai-sage/GigaAM-v3",
6 revision=revision,
7 trust_remote_code=True,
8)
9
10transcription = model.transcribe("example.wav")
11print(transcription)torch==2.8.0, torchaudio==2.8.0transformers==4.57.1pyannote-audio==4.0.0, torchcodec==0.7.0hydra-core, omegaconf, sentencepiece