cstr/parakeet-tdt-0.6b-v2-GGUF
Parakeet TDT 0.6B v2 — GGUF (ggml-quantised)
GGUF / ggml conversions of `nvidia/parakeet-tdt-0.6b-v2` for use with the crispasr CLI from [CrispStrobe/CrispASR](https://github.com/CrispStrobe/CrispASR).
Parakeet TDT 0.6B v2 is NVIDIA's English-only 600 M-parameter ASR model — the original Open ASR Leaderboard topper before v3 spread capacity across 25 European languages. On plain English, v2 is often stronger than v3 since it didn't have to share encoder capacity with 24 other languages.
- English-only, mixed-case + punctuation output
- Built-in word-level timestamps from the TDT (Token-and-Duration Transducer) decoder — no separate CTC alignment model required
- CC-BY-4.0 licence (friendlier than most ASR models)
This repo provides three quantisations, all converted from the same .nemo checkpoint via the convert-parakeet-to-gguf.py script and quantised with crispasr-quantize.
Files
All three precisions produce the same text on samples/jfk.wav:
And so, my fellow Americans, ask not what your country can do for you, ask what you can do for your country.
Quick Start
# 1. Build the runtime
git clone https://github.com/CrispStrobe/CrispASR
cd CrispASR
cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build -j$(nproc) --target crispasr
# 2a. Auto-download via the registry key
./build/bin/crispasr -m parakeet-v2 --auto-download -f your-audio.wav
# 2b. Or explicit download + load
hf download cstr/parakeet-tdt-0.6b-v2-GGUF \
parakeet-tdt-0.6b-v2-q4_k.gguf --local-dir .
./build/bin/crispasr -m parakeet-tdt-0.6b-v2-q4_k.gguf -f your-audio.wavWhen to pick v2 over v3
Model architecture
Same FastConformer encoder + TDT decoder as v3 — just trained on English-only data with an English-only BPE.
How this was made
- The
.nemocheckpoint was unpacked, NeMo state-dict keys were remapped to ggml-friendly names, and weights were written to GGUF F16 (matmul tensors) + F32 (norms / biases / mel filterbank). - Quantised variants are produced by
crispasr-quantize(the same llama.cpp-style quantiser used for the other GGUF releases). - Inference uses
src/parakeet.{h,cpp}: FastConformer encoder runs as a single ggml graph (BN folded out), LSTM predictor + joint head run as CPU F32 loops, TDT greedy decode alternates "advance encoder frame" / "emit token + advance predictor" using the duration head's argmax.
Attribution
- Original model: `nvidia/parakeet-tdt-0.6b-v2` (CC-BY-4.0). NVIDIA NeMo team.
- GGUF conversion + ggml runtime: `CrispStrobe/CrispASR`.
License
CC-BY-4.0, inherited from the base model. Use of these GGUF files must comply with the CC-BY-4.0 license including attribution.
