toth235a/voxpopuli-qc-samples-v3
VoxPopuli QC Samples V3 - CER-based Quality Control Quality control samples from VoxPopuli French ASR pseudolabeling, categorized by Character Error Rate (CER) between Whisper (original) and Parakeet (new) transcriptions. View in HuggingFace Dataset Viewer This dataset is viewable directly in the HuggingFace dataset viewer! Click the "Dataset Viewer" tab above to: Listen to audio samples See full Whisper and Parakeet transcriptions (not truncated) Filter by CER… See the full description on the dataset page: https://huggingface.co/datasets/toth235a/voxpopuli-qc-samples-v3.
VoxPopuli QC Samples V3 - CER-based Quality Control
Quality control samples from VoxPopuli French ASR pseudolabeling, categorized by Character Error Rate (CER) between Whisper (original) and Parakeet (new) transcriptions.
View in HuggingFace Dataset Viewer
This dataset is viewable directly in the HuggingFace dataset viewer! Click the "Dataset Viewer" tab above to:
- Listen to audio samples
- See full Whisper and Parakeet transcriptions (not truncated)
- Filter by CER bin
Interactive Notebook (Colab)

Dataset Summary
- 60 samples total (10 per CER bin)
- Columns:
audio,id,cer_bin,cer,whisper_text,parakeet_text,duration
CER Bins
CER Distribution (from 2.4M filtered samples)
Mean CER: 20% | Median CER: 4.3%
Usage
from datasets import load_dataset
ds = load_dataset("toth235a/voxpopuli-qc-samples-v3", split="train")
for sample in ds:
print(f"ID: {sample['id']}, CER: {sample['cer']:.1%}")
print(f"Whisper: {sample['whisper_text']}")
print(f"Parakeet: {sample['parakeet_text']}")
# sample['audio'] contains audio array and sampling_rateSource
- Original transcriptions: Whisper
- New transcriptions: Parakeet TDT 0.6B v3
- Parent dataset: VoxPopuli
License
CC-BY-4.0 (following VoxPopuli license)
