VOA PT-BR Raw Audio Dataset
Dataset Description
This dataset contains raw audio chunks processed directly with Whisper (without VAD preprocessing). Each chunk has an audio file (.wav) and associated metadata including:
- Raw transcription (automated using Whisper)
- Duration
- Start and end times
- Language (pt-br)
Usage
This dataset is intended for:
- Manual review and correction of transcriptions
- Evaluation of direct transcription quality
- Fine-tuning of ASR models for Portuguese
- Future comparison with VAD preprocessed audio
Dataset Structure
audio/
: Contains WAV files of audio chunksmetadata.json
: Contains complete metadata for all chunksmetadata.csv
: CSV version of the complete metadatasimple_dataset.csv
: Simplified version with just audio and transcription columnsdataset_dict.json
: Dataset in HuggingFace compatible format
Loading the Dataset
You can load this dataset using the HuggingFace Datasets library:
from datasets import load_dataset
# Load from the Hub
dataset = load_dataset("voa-engines/audio-review-raw")
# Access the first example
example = dataset["train"][0]
print(f"Audio file: {example['audio']}")
print(f"Transcription: {example['transcription']}")
Processing Information
The audio files were processed using the following approach:
- Direct Whisper transcription without VAD preprocessing
- Long audio files (>30s) were chunked into 30-second segments
- Original audio file structure maintained
Created on: 2025-04-04