Ported from upstream commit
76b8b23,
pinned 2026-04-16.
Validated against the Transformers reference at transcribe.cpp commit
bf0d0b7
on 2026-04-18.
Offline multilingual speech-to-text covering 14 languages (English, French,
German, Spanish, Italian, Portuguese, Dutch, Polish, Greek, Arabic, Japanese,
Chinese, Vietnamese, Korean). A Conformer encoder with a Transformer
encoder-decoder head (cross-attention, tied token embedding). Takes a 16 kHz
mono WAV and produces a transcript. Decoding is autoregressive.
WER measured on the full LibriSpeech test-clean split (2620 utterances) with
greedy decoding and no external LM. BF16 reference baseline: 1.26%.
Cohere's self-reported number on the same split is 1.25%
(Open ASR Leaderboard, as of 2026-03-26). Both ours and Cohere's numbers
use the Whisper EnglishTextNormalizer, so the comparison is apples-to-apples
and our port matches the upstream reference within rounding.
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.
License
Inherited from the base model: Apache-2.0. See the
upstream model card for full terms.
Original Model Card
The section below is reproduced from
CohereLabs/cohere-transcribe-03-2026 at commit
76b8b23 for offline reference. The upstream card is the
authoritative source.
Cohere Transcribe
Cohere Transcribe is an open source release of a 2B parameter dedicated audio-in, text-out automatic speech recognition (ASR) model. The model supports 14 languages.
audio waveform → log-Mel spectrogram. Audio is automatically resampled to 16kHz if necessary during preprocessing. Similarly, multi-channel (stereo) inputs are averaged to produce a single channel signal.
Output
transcribed text
Model size
2B
Model
a large Conformer encoder extracts acoustic representations, followed by a lightweight Transformer decoder for token generation
Training objective
supervised cross-entropy on output tokens; trained from scratch
Cohere Transcribe is supported natively in transformers. This is the recommended way to use the model for
offline inference. For online inference, see the vLLM integration example below.
bash
1pip install transformers>=5.4.0 torch huggingface_hub soundfile librosa sentencepiece protobuf
2pip install datasets # only needed for long-form and non-English examples
Testing was carried out with torch==2.10.0 but it is expected to work with other versions.
For audio longer than the feature extractor's max_audio_clip_s, the feature extractor automatically splits the waveform into chunks.
The processor reassembles the per-chunk transcriptions using the returned audio_chunk_index.
This example transcribes a 55 minute earnings call:
Multiple audio files can be processed in a single call. When the batch mixes short-form and long-form audio, the
processor handles chunking and reassembly.
Broader dependency support with trust_remote_code=True
For a wider range of torch and transformers versions, run with trust_remote_code=True.
You should expect greater stability via the transformers native path above.
This option will be deprecated in the future.
Usage with trust_remote_code=True
trust_remote_code=True inference exposes a single model.transcribe() method that automatically handles long-form audio chunking and exposes parameters to facilitate efficient inference. It is recommended that you let the transcribe method handle batching for you. This implementation is optimized for offline inference: for online inference, see the vLLM integration example below.
Installation
Recommended:
bash
1pip install"transformers>=4.56,<5.3,!=5.0.*,!=5.1.*" torch huggingface_hub soundfile librosa sentencepiece protobuf
2pip install datasets # only needed for examples 2 and 3
Installation with even broader transformers compatibility
For broader compatibility run the following install:
When audio is already in memory (streaming datasets, microphone input, etc.), pass numpy arrays directly instead of file paths. Enable compile=True to torch.compile the encoder for faster throughput, and pipeline_detokenization=True to overlap CPU detokenization with GPU inference.
Note:pipeline_detokenization=True is not supported on Windows.
This example transcribes Japanese audio from the FLEURS dataset:
python
1import torch
2from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
3from huggingface_hub import hf_hub_download
456model_id ="CohereLabs/cohere-transcribe-03-2026"78device ="cuda:0"if torch.cuda.is_available()else"cpu"910processor = AutoProcessor.from_pretrained(model_id, trust_remote_code=True)11model = AutoModelForSpeechSeq2Seq.from_pretrained(model_id, trust_remote_code=True).to(device)12model.eval()1314from datasets import load_dataset
1516ds = load_dataset("google/fleurs","ja_jp", split="test", streaming=True)17ds_iter =iter(ds)18samples =[next(ds_iter)for _ inrange(3)]# take 3 samples1920audio_arrays =[s["audio"]["array"]for s in samples]21sample_rates =[s["audio"]["sampling_rate"]for s in samples]2223# compile=True incurs a one-time warmup cost on the first call; subsequent calls are faster.24texts = model.transcribe(25 processor=processor,26 audio_arrays=audio_arrays,27 sample_rates=sample_rates,28 language="ja",29compile=True,30 pipeline_detokenization=True,31 batch_size=16,32)33for ref, hyp inzip([s["transcription"]for s in samples], texts):34print(f"REF: {ref}\nHYP: {hyp}\n")
Example 3: Long-Form Audio
Audio longer than 35 seconds is automatically split into overlapping chunks and reassembled. The API is identical — no special flags or configuration needed. This example transcribes a 55 minute earnings call. This will be slow if you haven't run compile=True in the previous example:
We observe similarly strong performance in human evaluations, where trained annotators assess transcription quality across
real-world audio for accuracy, coherence and usability.
The consistency between automated metrics and human judgments suggests that the model’s improvements translate
beyond controlled benchmarks to practical transcription settings.
Human-preference results
Figure: Human preference evaluation of model transcripts. In a head-to-head comparison,
annotators were asked to express preferences for generations which primarily preserved meaning -
but also avoided hallucination, correctly identified named entities,
and provided verbatim transcripts with appropriate formatting.
A score of 50% or higher indicates that Cohere Transcribe was preferred on average in the comparison.
per-language WERs
per-language WERs
Figure: per-language error rate averaged over FLEURS, Common Voice 17.0, MLS and Wenet tests sets (where relevant for a given language). CER for zh, ja, ko — WER otherwise
English, EU and long-form transcription WERs/RTFx are on the Open ASR Leaderboard.
Strengths and Limitations
Cohere Transcribe is a performant, dedicated ASR model intended for efficient speech transcription.
Strengths
Cohere Transcribe demonstrates best-in-class transcription accuracy in 14 languages. As a dedicated speech recognition model, it is also efficient, benefitting from a real-time factor up to three times faster than that of other, dedicated ASR models in the same size range. The model was trained from scratch, and from the outset, we deliberately focused on maximizing transcription accuracy while keeping production readiness top-of-mind.
Limitations
Single language. The model performs best when remaining in-distribution of a single, pre-specified language amongst the 14 in the range it supports. It does not feature explicit, automatic language detection and exhibits inconsistent performance on code-switched audio.
Timestamps/Speaker diarization. The model does not feature either of these.
Silence. Like most AED speech models, Cohere Transcribe is eager to transcribe, even non-speech sounds. The model thus benefits from prepending a noise gate or VAD (voice activity detection) model in order to prevent low-volume, floor noise from turning into hallucinations.
Ecosystem support 🚀
Cohere Transcribe is supported on the following libraries/platforms:
If you have added support for the model somewhere not included above please raise an issue/PR!
If you find issues with any of these please raise an issue with the respective library.
Model Card Contact
For errors or additional questions about details in this model card, contact labs@cohere.com or raise an issue.
Terms of Use:
We hope that the release of this model will make community-based research efforts more accessible, by releasing the weights of a highly performant 2 billion parameter model to researchers all over the world. This model is governed by an Apache 2.0 license.