
NVIDIA Parakeet TDT 0.6B v2 is a 600M-parameter English ASR model that topped the Hugging Face Open ASR leaderboard in May 2025 with a 6.05% WER, capable of transcribing an hour of audio in a single second.
A strong 0.6B-parameter dense audio model from NVIDIA. Treat the modality benchmarks above as the leading indicator of fit — composite scoring across modalities is still maturing.
Generated from this model’s benchmarks and ranking signals. Editor reviews refine it over time.
Access model weights, configuration files, and documentation.
See which devices can run this model and at what quality level.
Cheapest current cloud rentals with at least 1 GB VRAM, refreshed hourly.
| Option | Cost / GPU-hour |
|---|---|
NVIDIA GeForce RTX 3080 TiVast.ai · Spot · 12 GB VRAM | $0.03 |
NVIDIA GeForce RTX 5060 TiVast.ai · Spot · 16 GB VRAM | $0.04 |
NVIDIA GeForce RTX 5060 TiVast.ai · On-Demand · 16 GB VRAM | $0.05 |
NVIDIA GeForce RTX 3080 TiVast.ai · On-Demand · 12 GB VRAM | $0.07 |
NVIDIA GeForce RTX 5070Vast.ai · Spot · 12 GB VRAM | $0.10 |
Per-GPU rate across RunPod and the Vast.ai marketplace.
Spot tier is interruptible. Plan for restarts when comparing against on-demand prices.
NVIDIA Parakeet TDT 0.6B v2 is a 600-million-parameter automatic speech recognition (ASR) model designed exclusively for English speech transcription. Released in May 2025, it secured the top spot on the Hugging Face Open ASR leaderboard with an average Word Error Rate (WER) of 6.05%, outperforming comparably sized open ASR models at the time of its release. The model is built by NVIDIA under the CC-BY-4.0 license, making it freely usable for both research and commercial applications.
This is not a general-purpose language model or a multimodal system — it is a purpose-built transducer for converting audio to text. Its dense architecture, combined with the Token-and-Duration Transducer (TDT) decoder, allows it to process an hour of audio in roughly one second under optimal batch configurations. For developers and engineers who need local, offline transcription with high accuracy and low latency, Parakeet TDT 0.6B v2 offers a compelling balance of model size and performance.
Parakeet TDT 0.6B v2 uses a FastConformer encoder paired with a Token-and-Duration Transducer (TDT) decoder. This is a dense model — all 0.6B parameters are active during every inference pass. There are no expert routing or sparse activation mechanisms. That means the VRAM footprint is predictable and scales linearly with precision and batch size.
The model ingests raw audio (typically 16 kHz mono WAV or FLAC) and outputs text with word-level timestamps, punctuation, and capitalization. It does not require a separate language model or text post-processing pipeline. The TDT decoder jointly predicts token sequences and their durations, enabling precise timing information for each transcribed word.
Key architectural specs:
The model’s small footprint and efficient encoder make it suitable for real-time and near-real-time workloads. On the Hugging Face Open ASR leaderboard, it achieved a Real-Time Factor (RTF) of 3380 with a batch size of 128 — meaning it processes audio 3380× faster than real time under those conditions.
This model is built for one job: turning spoken English into written text, accurately and fast. It does not support other languages, generate speech, or answer questions. But within its domain, it delivers strong results across a variety of acoustic environments.
Benchmarked WER on standard datasets (from HuggingFace model card):
| Dataset | Test WER |
|---|---|
| LibriSpeech (clean) | 1.69% |
| LibriSpeech (other) | 3.19% |
| SPGI Speech | 2.17% |
| TED-LIUM v3 | 3.38% |
| Vox Populi | 5.95% |
| GigaSpeech | 9.74% |
| Earnings-22 | 11.15% |
| AMI (Meetings test) | 11.16% |
The model handles clean read speech (LibriSpeech) with near-perfect accuracy and degrades gracefully in noisy, conversational, or financial earnings call settings. It also performs well on challenging content like spoken numbers and song lyrics, thanks to the TDT decoder’s ability to model duration patterns.
Concrete use cases:
The model automatically inserts punctuation and capitalizes proper nouns, so the output is readable without a separate formatting step.
Because Parakeet TDT 0.6B v2 is a 600M-parameter dense model, it runs comfortably on consumer-grade GPUs — and even on some CPUs for offline batch processing. The primary framework for inference is NVIDIA NeMo, but the model is also available through HuggingFace transformers and can be loaded with pipeline("automatic-speech-recognition").
| Precision | Approximate VRAM (batch size 1) | Notes |
|---|---|---|
| FP32 | ~2.4 GB | Full precision, rarely needed |
| FP16 | ~1.2 GB | Recommended for GPU inference |
| INT8 (quantized) | ~0.8 GB | Available via NeMo quantization tools |
| Q4_K_M (GGUF) | ~0.5 GB | For CPU or LLM-style runners (experimental ASR support) |
Important: ASR models are typically run in FP16 or FP32. INT8 and GGUF quantization support for ASR is less mature than for LLMs. For most local deployments, FP16 on a GPU is the safe and performant choice.
transformers with FP16. Expect near real-time speed on M4 Max.transformers with FP32, but speed will be roughly 1–2× real-time (i.e., processing a 1-hour file in 30–60 minutes).1import torch2from transformers import pipeline34pipe = pipeline(5 "automatic-speech-recognition",6 model="nvidia/parakeet-tdt-0.6b-v2",7 device="cuda" if torch.cuda.is_available() else "cpu",8 return_timestamps="word"9)1011result = pipe("audio_file.flav")12print(result["text"])
For streaming or low-latency use cases, refer to the NVIDIA NeMo documentation for the streaming inference API.
In the open ASR landscape, Parakeet TDT 0.6B v2 competes most directly with OpenAI Whisper small (244M params) and Whisper medium (769M params). All three are English ASR models, but their architectures and trade-offs differ.
| Model | Parameters | Average WER (Open ASR leaderboard) | Speed (RTF, batch=1) | Timestamps | Punctuation |
|---|---|---|---|---|---|
| Parakeet TDT 0.6B v2 | 600M | 6.05% | ~0.02 | Word-level, built-in | Built-in |
| Whisper small | 244M | ~8.5%* | ~0.05 | Segment-level | Requires external formatting |
| Whisper medium | 769M | ~7.0%* | ~0.10 | Segment-level | Requires external formatting |
*Approximate from leaderboard data at time of Parakeet’s release.
When to choose Parakeet TDT 0.6B v2:
When to choose Whisper small or medium:
For English-only, high-speed, low-VRAM local ASR, Parakeet TDT 0.6B v2 is currently the best option at its size. The 5–10× speed advantage over Whisper medium, combined with built-in formatting, makes it the practical choice for developers who need to transcribe large volumes of English audio on a single GPU.

Explore the Provider
Aggregate stats, leaderboard, release timeline, and benchmark coverage across every NVIDIA model we track.