File size: 1,540 Bytes
4681e2a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# 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:
1. Manual review and correction of transcriptions
2. Evaluation of direct transcription quality
3. Fine-tuning of ASR models for Portuguese
4. Future comparison with VAD preprocessed audio
## Dataset Structure
- `audio/`: Contains WAV files of audio chunks
- `metadata.json`: Contains complete metadata for all chunks
- `metadata.csv`: CSV version of the complete metadata
- `simple_dataset.csv`: Simplified version with just audio and transcription columns
- `dataset_dict.json`: Dataset in HuggingFace compatible format
## Loading the Dataset
You can load this dataset using the HuggingFace Datasets library:
```python
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
|