Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- asr
|
| 7 |
+
- speech-to-text
|
| 8 |
+
- benchmark
|
| 9 |
+
- rtx-5090
|
| 10 |
+
- parakeet
|
| 11 |
+
- whisper
|
| 12 |
+
- local-ai
|
| 13 |
+
pretty_name: Sovereign ASR Bench (RTX 5090)
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# Sovereign ASR Bench — RTX 5090
|
| 17 |
+
|
| 18 |
+
Local, self-hosted **automatic speech recognition** benchmarks on one RTX 5090 32GB.
|
| 19 |
+
Part of the WITCHEER local-AI rig. Methodology that matters: **load-once** measurement (so
|
| 20 |
+
RTFx times transcription, not model load), **one shared text normalizer** applied to every
|
| 21 |
+
model output *and* reference, and **micro-averaged WER** (total errors / total reference
|
| 22 |
+
words — the LibriSpeech standard).
|
| 23 |
+
|
| 24 |
+
## Board — LibriSpeech (test-clean / test-other), 200 utts/split, load-once
|
| 25 |
+
|
| 26 |
+
| model | params | arch | WER clean | WER other | RTFx | VRAM |
|
| 27 |
+
|---|---|---|---|---|---|---|
|
| 28 |
+
| **parakeet-tdt-0.6b-v2** | 0.6B | TDT transducer | 1.49% | **4.73%** | **451×** | **2.0 GB** |
|
| 29 |
+
| whisper-large-v3 | 1.55B | attention enc-dec | 1.47% | 5.96% | 53× | 4.6 GB |
|
| 30 |
+
| whisper-large-v3-turbo | 809M | attention enc-dec | 1.42% | 6.26% | 117× | 2.5 GB |
|
| 31 |
+
|
| 32 |
+
Clean read speech is a three-way tie (saturated). On the **noisy** split the 0.6B Parakeet
|
| 33 |
+
**transducer** wins on WER **and** runs 4–9× faster on the least VRAM — the smallest model is
|
| 34 |
+
the most noise-robust. Full writeup + mechanism in [`asr-head-to-head.md`](./asr-head-to-head.md);
|
| 35 |
+
chart in `asr-head-to-head.png`.
|
| 36 |
+
|
| 37 |
+
## Method
|
| 38 |
+
|
| 39 |
+
- **Runner (load-once):** [`scripts/asr_bench.py`](https://github.com/notwitcheer/llm-bench-rig) —
|
| 40 |
+
parakeet.cpp `bench --manifest` (TDT) + whisper.cpp multi-file, both on sm_120 CUDA.
|
| 41 |
+
- **Scorer (dep-free):** `scripts/asr_report.py` — micro-WER + RTFx + peak VRAM.
|
| 42 |
+
|
| 43 |
+
## Caveats
|
| 44 |
+
|
| 45 |
+
200 utts/split is **directional** (ranking solid, exact margin provisional vs the full 2,939-utt
|
| 46 |
+
test-other). **English-only.** Number-words-vs-digits are **not** reconciled — counted as errors
|
| 47 |
+
equally for every model.
|