Cataloged from handy-computer/canary-1b-v2-gguf
GGUF conversions of nvidia/canary-1b-v2 for use with transcribe.cpp.
Ported from upstream commit 87bc526, pinned 2026-05-08. Validated against the NeMo reference at transcribe.cpp commit db53eda on 2026-05-08.
Offline multilingual speech-to-text and translation across 25 European languages. A 978M-parameter multitask AED with a 32-layer FastConformer encoder and an 8-layer Transformer decoder. Supports automatic speech recognition for any of the 25 supported languages, plus translation between supported language pairs (per the upstream model card). Takes a 16 kHz mono WAV and produces a transcript. Not a streaming model; word and segment timestamps from the upstream model are not exposed in the v1 port.
| Quantization | Download | Size | WER (LibriSpeech test-clean) |
|---|---|---|---|
| F32 | canary-1b-v2-F32.gguf | 3.7 GB | 1.92% |
| F16 | canary-1b-v2-F16.gguf | 1.8 GB | 1.92% |
| Q8_0 | canary-1b-v2-Q8_0.gguf | 1.1 GB | 1.91% |
| Q6_K | canary-1b-v2-Q6_K.gguf | 889 MB | 1.94% |
| Q5_K_M | canary-1b-v2-Q5_K_M.gguf | 798 MB | 1.93% |
| Q4_K_M | canary-1b-v2-Q4_K_M.gguf |
| 701 MB |
| 1.91% |
WER measured on the full LibriSpeech test-clean split (2620 utterances) with greedy decoding and no external LM. F32 reference baseline: 1.92%. NVIDIA's self-reported number on the upstream model card is 2.18%; our F32 port comes in slightly under the upstream-reported number (Δ −0.26pp) and is likely down to scoring differences.
Build transcribe.cpp from source:
git clone git@github.com:handy-computer/transcribe.cpp.git
cd transcribe.cpp
cmake -B build && cmake --build build
Run on a 16 kHz mono WAV:
build/bin/transcribe-cli \
-m canary-1b-v2-Q8_0.gguf \
input.wav
If your audio isn't already 16 kHz mono WAV, convert it first:
ffmpeg -i input.mp3 -ar 16000 -ac 1 output.wav
See the transcribe.cpp model page for performance numbers, numerical validation, and reproduction steps.
Inherited from the base model: CC-BY-4.0. See the upstream model card for full terms.
The section below is reproduced from nvidia/canary-1b-v2 at commit
87bc526for offline reference. The upstream card is the authoritative source.
Canary-1b-v2 is a powerful 1-billion parameter model built for high-quality speech transcription and translation across 25 European languages.
It excels at both automatic speech recognition (ASR) and speech translation (AST), supporting:
Supported Languages:
Bulgarian (bg), Croatian (hr), Czech (cs), Danish (da), Dutch (nl), English (en), Estonian (et), Finnish (fi), French (fr), German (de), Greek (el), Hungarian (hu), Italian (it), Latvian (lv), Lithuanian (lt), Maltese (mt), Polish (pl), Portuguese (pt), Romanian (ro), Slovak (sk), Slovenian (sl), Spanish (es), Swedish (sv), Russian (ru), Ukrainian (uk)
🗣️ Experience Canary-1b-v2 in action at Hugging Face Demo
Canary-1b-v2 model is ready for commercial/non-commercial use.
GOVERNING TERMS: Use of this model is governed by the CC-BY-4.0 license.
For documentation, deployment guides, enterprise-ready APIs, and the latest open models—including Nemotron and other cutting-edge speech, translation, and generative AI—visit the NVIDIA Developer Portal at developer.nvidia.com. Join the community to access tools, support, and resources to accelerate your development with NVIDIA’s NeMo, Riva, NIM, and foundation models.
What is Nemotron? NVIDIA Developer Nemotron NVIDIA Riva Speech NeMo Documentation
Canary-1b-v2 is a scaled and enhanced version of the Canary model family, offering:
Canary-1b-v2 model is the first model from NeMo team that leveraged full Nvidia's Granary dataset [1] [2], showcasing its multitask and multilingual capabilities.
For full details on the model architecture, training methodology, datasets, and evaluation results, check out the Canary-1b-v2 Technical Report.
For a deeper glimpse into the Canary family of models, explore this comprehensive NeMo tutorial on multitask speech models.

Figure 1: ASR WER comparison across different models. This does not include Punctuation and Capitalisation errors.

Figure 2: AST X → En COMET scores comparison across different models

Figure 3: AST En → X COMET scores comparison across different models
Note 1: The above evaluations are conducted in two settings: (1) All supported languages (24 languages, excluding Latvian since seamless-m4t-v2-large and seamless-m4t-medium do not support it), and (2) Common languages (6 languages supported by all compared models: en, fr, de, it, pt, es).
Note 2: Performance differences may be partly attributed to Portuguese variant differences - our training data uses European Portuguese while most benchmarks use Brazilian Portuguese.
Global
This model serves developers, researchers, academics, and industries building applications that require speech-to-text capabilities, including but not limited to: conversational AI, voice assistants, transcription services, subtitle generation, and voice analytics platforms.
Huggingface 08/14/2025
Canary-1b-v2 is an encoder-decoder architecture featuring a FastConformer Encoder [3] and a Transformer Decoder [4]. The model extracts audio features through the encoder and uses task-specific tokens—such as <source language> and <target language>—to guide the Transformer Decoder in generating text output.
It uses a unified SentencePiece Tokenizer [5] with a vocabulary of 16,384 tokens, optimized across all 25 supported languages. The architecture includes 32 encoder layers and 8 decoder layers, totaling 978 million parameters.
For implementation details, see the NeMo repository.
.wav and .flac audio formatsOur AI models are designed and/or optimized to run on NVIDIA GPU-accelerated systems. By leveraging NVIDIA's hardware (e.g. GPU cores) and software frameworks (e.g., CUDA libraries), the model achieves faster training and inference times compared to CPU-only solutions.
To train, fine-tune or play with the model you will need to install NVIDIA NeMo [6]. We recommend you install it after you've installed latest PyTorch version.
pip install -U nemo_toolkit['asr']
The model is available for use in the NeMo toolkit [6], and can be used as a pre-trained checkpoint for inference or for fine-tuning on another dataset.
from nemo.collections.asr.models import ASRModel
asr_ast_model = ASRModel.from_pretrained(model_name="nvidia/canary-1b-v2")
First, let's get a sample:
wget https://dldata-public.s3.us-east-2.amazonaws.com/2086-149220-0033.wav
Then simply do:
output = asr_ast_model.transcribe(['2086-149220-0033.wav'], source_lang='en', target_lang='en')
print(output[0].text)
Be sure to specify necessary target_lang for proper translation:
output = asr_ast_model.transcribe(['2086-149220-0033.wav'], source_lang='en', target_lang='fr')
print(output[0].text)
Note: Use main branch of NeMo to get timestamps until it is released in NeMo 2.5.
To transcribe with timestamps:
output = asr_model.transcribe(['2086-149220-0033.wav'], source_lang='en', target_lang='en', timestamps=True)
# by default, timestamps are enabled for word and segment level
word_timestamps = output[0].timestamp['word'] # word level timestamps for first sample
segment_timestamps = output[0].timestamp['segment'] # segment level timestamps
for stamp in segment_timestamps:
print(f"{stamp['start']}s - {stamp['end']}s : {stamp['segment']}")
To translate with timestamps:
output = asr_model.transcribe(['2086-149220-0033.wav'], source_lang='en', target_lang='fr', timestamps=True)
segment_timestamps = output[0].timestamp['segment'] # only supports segment level timestamps for translation
for stamp in segment_timestamps:
print(f"{stamp['start']}s - {stamp['end']}s : {stamp['segment']}")
For translation task, please, refer to segment-level timestamps for getting intuitive and accurate alignment.
Note: If timestamps are not required for your work, you can reduce memory usage by restoring only the
.nemofile without the auxiliary CTC model. To do this, extract the.nemofile, remove any timestamps_asr_model files, then repackage it into a new.nemofile.
Runtime Engine(s):
Supported Hardware Microarchitecture Compatibility:
[Preferred/Supported] Operating System(s):
Hardware Specific Requirements: At least 6GB RAM for model to load.
Current version: Canary-1b-v2. Previous versions can be accessed here.
The model was trained using the NeMo toolkit [4], following a 3-stage training procedure:
For all the stages of training, both languages and corpora are weighted using temperature sampling (τ = 0.5).
Training script: speech_to_text_aed.py
Tokenizer script: process_asr_text_tokenizer.py
Canary-1b-v2 was trained on a massive multilingual speech recognition and translation dataset combining Nvidia's newly published Granary and in-house dataset NeMo ASR Set 3.0.
Granary Dataset [5] [6] with improved pseudo-labels and efficiently filtered versions of the following corpora:
Granary is now available on Hugging Face.
To read more about the pseudo-labeling technique and pipeline, please refer to the Granary Paper.
NeMo ASR Set 3.0 including human-labeled transcriptions from the following corpora:
Total training hours: 1.7M
All transcripts include punctuation and capitalization.
Data Collection Method by dataset
Labeling Method by dataset
Data Collection Method by dataset
Labeling Method by dataset
This section reports the evaluation results of the Canary-1b-v2 model across multiple tasks, including Automatic Speech Recognition (ASR), Speech Translation (AST), robustness to noise, and long-form transcription.
| WER ↓ | Fleurs-25 Langs | CoVoST-13 Langs | MLS - 6 Langs |
|---|---|---|---|
Canary-1b-v2 | 8.40% | 8.85% | 7.27% |
Note: Presented WERs do not include Punctuation and Capitalization errors.
| WER ↓ | RTFx | Mean | AMI | GigaSpeech | LS Clean | LS Other | Earnings22 | SPGISpech | Tedlium | Voxpopuli |
|---|---|---|---|---|---|---|---|---|---|---|
Canary-1b-v2 | 749 | 7.15 | 16.01 | 10.82 | 2.18 | 3.56 | 11.79 | 2.28 | 4.29 | 6.25 |
More details on evaluation can be found at HuggingFace ASR Leaderboard
| COMET ↑ | BLEU ↑ | |||
|---|---|---|---|---|
| Fleurs-24 Langs | CoVoST-13 Langs | Fleurs-24 Langs | CoVoST-13 Langs | |
Canary-1b-v2 | 79.30 | 77.48 | 29.08 | 40.48 |
| COMET ↑ | BLEU ↑ | |||
|---|---|---|---|---|
| Fleurs-24 Langs | CoVoST-5 Langs | Fleurs-24 Langs | CoVoST-5 Langs | |
Canary-1b-v2 | 84.56 | 80.29 | 29.4 | 32.33 |
Performance across different Signal-to-Noise Ratios (SNR) using MUSAN music and noise samples [16] on the LibriSpeech Clean test set. Metric: Word Error Rate (WER)
| SNR (dB) | 100 | 10 | 5 | 0 | -5 |
|---|---|---|---|---|---|
Canary-1b-v2 | 2.18% | 2.29% | 2.80% | 5.08% | 19.38% |
Number of characters per minute on MUSAN [16] 48 hrs eval set:
| # of character per minute ↓ | |
|---|---|
Canary-1b-v2 | 134.7 |
Canary-1b-v2 achieves strong performance on long-form transcription by using dynamic chunking with 1-second overlap between chunks, allowing for efficient parallel processing. This dynamic chunking feature is automatically enabled when calling .transcribe() on a single audio file, or when using batch_size=1 with multiple audio files that are longer than 40 seconds.
| Dataset | WER ↓ |
|---|---|
| Earnings-22 | 13.78% |
| This American Life | 9.87% |
Note: Presented WERs do not include Punctuation and Capitalization errors.
Engine:
Test Hardware:
NVIDIA believes Trustworthy AI is a shared responsibility and we have established policies and practices to enable development for a wide array of AI applications. When downloaded or used in accordance with our terms of service, developers should work with their supporting model team to ensure this model meets requirements for the relevant industry and use case and addresses unforeseen product misuse.
For more detailed information on ethical considerations for this model, please see the Model Card++ Explainability, Bias, Safety & Security, and Privacy Subcards here.
Please report security vulnerabilities or NVIDIA AI Concerns here.
| Field | Response |
|---|---|
| Participation considerations from adversely impacted groups protected classes in model design and testing | None |
| Measures taken to mitigate against unwanted bias | None |
| Field | Response |
|---|---|
| Intended Domain | Speech to Text Transcription and Translation |
| Model Type | Attention Encoder-Decoder |
| Intended Users | This model is intended for developers, researchers, academics, and industries building conversational based applications. |
| Output | Text |
| Describe how the model works | Speech input is encoded into embeddings and passed into conformer-based model and output a text response. |
| Name the adversely impacted groups this has been tested to deliver comparable outcomes regardless of | Not Applicable |
| Technical Limitations & Mitigation | Transcripts and translations may be not 100% accurate. Accuracy varies based on source and target language and characteristics of input audio (Domain, Use Case, Accent, Noise, Speech Type, Context of speech, etc.) |
| Verified to have met prescribed NVIDIA quality standards | Yes |
| Performance Metrics | Word Error Rate (Speech Transcription) / BLEU score (Speech Translation) / COMET score (Speech Translation) |
| Potential Known Risks | If a word is not trained in the language model and not presented in vocabulary, the word is not likely to be recognized. Not recommended for word-for-word/incomplete sentences as accuracy varies based on the context of input text |
| Licensing | GOVERNING TERMS: Use of this model is governed by the CC-BY-4.0 license. |
| Field | Response |
|---|---|
| Generatable or reverse engineerable personal data? | None |
| Personal data used to create this model? | None |
| Is there provenance for all datasets used in training? | Yes |
| Does data labeling (annotation, metadata) comply with privacy laws? | Yes |
| Is data compliant with data subject requests for data correction or removal, if such a request was made? | No, not possible with externally-sourced data. |
| Applicable Privacy Policy | https://www.nvidia.com/en-us/about-nvidia/privacy-policy/ |
| Field | Response |
|---|---|
| Model Application(s) | Speech to Text Transcription |
| Describe the life critical impact | None |
| Use Case Restrictions | Abide by CC-BY-4.0 License |
| Model and dataset restrictions | The Principle of least privilege (PoLP) is applied limiting access for dataset generation and model development. Restrictions enforce dataset access during training, and dataset license constraints adhered to. |
[7] Youtube-Commons
[8] MOSEL: 950,000 Hours of Speech Data for Open-Source Speech Foundation Model Training on EU Languages