July 30, 2026
The 2026 Speech-to-Text Model Boom
Cohere Transcribe. IBM Granite Speech 4.1. Qwen3-ASR. Voxtral. Parakeet TDT. ARK-ASR. In about six months, open speech recognition went from “Whisper and some also-rans” to a leaderboard where six models beat Whisper and the top four are separated by less than one percentage point. Here’s what actually shipped — and the uncomfortable thing those benchmarks don’t measure.
If you follow AI releases at all, 2026 has been a genuinely remarkable year for speech recognition. For three years, “which speech-to-text model should I use?” had one boring answer: OpenAI’s Whisper. That question now has at least six defensible answers, most of them Apache 2.0, most of them small enough to run on a laptop.
I build a dictation app, so I've been watching this closely and with some self-interest. Below is the honest state of play as of late July 2026, including the part that's bad news for my own marketing copy.
What Actually Shipped in 2026
Here is the current picture on the Hugging Face Open ASR Leaderboard, the most-cited public benchmark for English speech recognition. Lower WER (word error rate) is better.
| Model | WER | Params | License | Languages |
|---|---|---|---|---|
| ARK-ASR-3B | 5.04% | 3B | Apache 2.0 | — |
| IBM Granite Speech 4.1 | 5.33% | 2B | Apache 2.0 | 6 |
| Cohere Transcribe | 5.42% | 2B | Apache 2.0 | 14 |
| Qwen3-ASR-1.7B | 5.76% | 1.7B | Apache 2.0 | 52 |
| Parakeet TDT 0.6B v3 | 6.32% | 0.6B | CC-BY-4.0 | 25 |
| Whisper large-v3 (what Wspr runs) | 7.44% | 1.55B | MIT | 99 |
A few that don't fit neatly in a WER column but matter:
- Voxtral (Mistral, February 2026) — a 3.4B Apache 2.0 model built for streaming, with 80–1200 ms latency and 13 languages. Its headline accuracy numbers usually come from a different benchmark than the one above, so I'm deliberately not dropping it into the same column. Its real story is real-time, not leaderboard rank.
- Meta Omnilingual ASR — 300M to 7B, Apache 2.0, and the number that stops you: 1,600+ languages supported, with zero-shot extension to 5,400+. Nothing else is close on coverage.
- Moonshine (Useful Sensors) — the smallest model is about 27 MB, aimed at Raspberry Pi-class hardware where Whisper simply won't fit.
So: Whisper large-v3 is now, on English benchmarks, in sixth place or worse. I'd rather say that plainly than have you find out from someone else's comparison table.
The Catch Everyone Skips
Read that leaderboard again. The gap between first place and fourth place is 0.72 of a percentage point. On a 500-word dictation, that's the difference between about 25 wrong words and about 29 wrong words. You would not notice which model you were using. You would notice, immediately, if either one took four seconds to give you the first word.
This is the actual consensus among people benchmarking these models, not a convenient excuse: with the top of the leaderboard compressed into a single WER point, rank has stopped being the deciding variable. License, language coverage, streaming support, hardware requirements, and cost per audio-hour now matter more than which model is nominally #1 this month — and #1 has changed hands at least four times since March.
There's a second thing worth knowing about WER benchmarks. They're mostly scored on clean, read English: audiobooks, curated podcasts, prepared speech. Your dictation is not that. Your dictation is you, mid-thought, with a fan running, saying “um” and restarting the sentence twice, using your coworker's name and three acronyms from your industry. The leaderboard has very little to say about that, which is why the model that wins on LibriSpeech is often not the one that feels best in your editor.
What Actually Decides Whether Dictation Feels Good
After building and using a dictation app daily, my honest ranking of what determines whether you keep using one:
- Time from releasing the hotkey to text appearing. This is the whole experience. Under a second feels like magic; over three seconds and you go back to typing. This is dominated by model size, your hardware, and GPU acceleration — not by the model's benchmark rank.
- Whether the text lands where you're actually typing. A transcript in a separate window that you copy-paste is a different, much worse product than text appearing at your cursor in whatever app has focus.
- Whether it works with no internet and no account. Cloud dictation dies on a plane, on hotel Wi-Fi, and during the vendor's outage.
- Whether your audio leaves your machine. Every word you dictate is, by definition, something you were about to write down. Sometimes that's a private email, a medical note, an unannounced product, a client's name.
- What it costs you per year, forever.
- Then word error rate.
Notice that a new state-of-the-art model improves exactly one item on that list, and it's the last one.
Where Wspr Sits — Including What It Doesn’t Do
Wspr runs OpenAI's Whisper models on your own machine via whisper.cpp with GPU acceleration. You press a global hotkey, speak, and the text appears at your cursor in whatever app you're using. It costs $14.99 once and runs on macOS, Windows, and Linux.
Let me be straight about the tradeoff this article has been building toward:
- Wspr does not run the #1 model. It ships Whisper tiny, base, small, medium, and large-v3. On English WER benchmarks, Cohere Transcribe and Granite Speech 4.1 beat large-v3 by roughly two percentage points.
- Wspr doesn't do streaming. If you need words appearing as you speak them, Voxtral's architecture is built for that and Whisper's isn't.
- whisper.cpp is a Whisper runtime, not a universal one. Its supported-model list is Whisper variants — tiny through large-v3-turbo. You'll see claims that it has become a general ggml hub for Parakeet, Voxtral and friends; as of this writing its own documentation doesn't say that. Adopting a non-Whisper architecture is a real engineering project, not a config change.
What Wspr does have is everything above WER on that list. Whisper large-v3 supports 99 languages — more than every model that beats it on English except Meta's Omnilingual, and roughly seven times Cohere Transcribe's 14 or Granite's 6. It's MIT-licensed. It runs entirely offline. Your audio never touches a server, because there is no server. There's no account, no subscription, and no meter.
And if you want the speed end of the tradeoff, that's a dropdown: Whisper Small (~460 MB) is dramatically faster than large-v3 (3.1 GB) and, for clear speech into a decent microphone, close enough that most people leave it there.
| What you might actually want | The honest answer |
|---|---|
| Lowest possible English WER, batch transcription, you're a developer | Run Granite Speech 4.1 or Cohere Transcribe yourself. They're Apache 2.0 and free. |
| Live captions / words appearing as you speak | Voxtral. It's built for streaming; Whisper isn't. |
| A language nobody else supports | Meta Omnilingual ASR (1,600+ languages). |
| Raspberry Pi or embedded hardware | Moonshine (~27 MB) or Parakeet TDT 0.6B. |
| Press a key, speak, text appears in your app — privately, offline, on any desktop OS, no subscription | That's the one Wspr is built for. |
Those first four rows are genuinely better answers than mine for those jobs, and I'd rather send you to the right tool than pretend one app wins everything. But note what all four have in common: they hand you a model, not a product. Downloading a 2B-parameter checkpoint is not the same as having dictation in your email client on a Tuesday morning.
Try It Without Paying
The gap between benchmark and daily use is the reason Wspr's free tier exists: 50 live transcriptions, no account, no card. That's enough to answer the only question that matters — how it feels on your hardware with your voice.
- Download Wspr for macOS, Windows, or Linux.
- Open Settings and grab a model. Start with Small; step up to Large-v3 if you have the GPU for it.
- Set your hotkey (Ctrl+Shift+Space by default).
- Press it, talk, watch the words land at your cursor.
If it earns a place in your workflow, Pro is a one-time $14.99. No renewal, ever.
The Bottom Line
2026 has been a genuinely great year for open speech recognition, and you should be excited about it — six credible models, most of them Apache 2.0, several small enough for a laptop, one covering 1,600 languages. That's a real shift and it happened fast.
Just don't confuse it with a shift in what makes dictation useful. The models crossed the “accurate enough” threshold a while ago, and the last two percentage points of WER are being fought over in a range you cannot perceive while typing an email. What you can perceive is latency, whether the text shows up where you're working, whether it works on a plane, whether your words stay on your machine, and whether you're still paying for it in 2029.
That's the part I work on.
Sources: Hugging Face Open ASR Leaderboard figures as reported by Cohere's Transcribe announcement (March 26, 2026) and MarkTechPost's open-ASR comparison (July 23, 2026); whisper.cpp project documentation for supported-model list. Figures checked July 30, 2026. Leaderboard positions in this field change monthly — verify before making decisions on them.
Related: Does Voice Typing Send Your Voice to the Cloud? | Best Voice-to-Text Apps for Mac in 2026 | Voice-to-Text for Linux in 2026 | Why I Stopped Paying $15/Month for Dictation
← More articles