Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,35 +1,55 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
sampling_rate: 16000
|
| 8 |
-
- name: text
|
| 9 |
-
dtype: string
|
| 10 |
-
- name: text_ts
|
| 11 |
-
dtype: string
|
| 12 |
-
- name: preconditioning
|
| 13 |
-
dtype: string
|
| 14 |
-
- name: start_time
|
| 15 |
-
dtype: string
|
| 16 |
-
- name: end_time
|
| 17 |
-
dtype: string
|
| 18 |
-
- name: speech_duration
|
| 19 |
-
dtype: float32
|
| 20 |
-
- name: word_timestamps
|
| 21 |
-
dtype: string
|
| 22 |
-
- name: source_file
|
| 23 |
-
dtype: string
|
| 24 |
-
splits:
|
| 25 |
-
- name: train
|
| 26 |
-
num_bytes: 59301142
|
| 27 |
-
num_examples: 86
|
| 28 |
-
download_size: 56465396
|
| 29 |
-
dataset_size: 59301142
|
| 30 |
-
configs:
|
| 31 |
-
- config_name: default
|
| 32 |
-
data_files:
|
| 33 |
-
- split: train
|
| 34 |
-
path: data/train-*
|
| 35 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
tags:
|
| 3 |
+
- audio
|
| 4 |
+
- speech
|
| 5 |
+
- whisper
|
| 6 |
+
- dataset
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
+
# max_payne2
|
| 9 |
+
|
| 10 |
+
Speech dataset prepared with Trelis Studio.
|
| 11 |
+
|
| 12 |
+
## Statistics
|
| 13 |
+
|
| 14 |
+
| Metric | Value |
|
| 15 |
+
|--------|-------|
|
| 16 |
+
| Source files | 1 |
|
| 17 |
+
| Train samples | 86 |
|
| 18 |
+
| Total duration | 32.9 minutes |
|
| 19 |
+
|
| 20 |
+
## Columns
|
| 21 |
+
|
| 22 |
+
| Column | Type | Description |
|
| 23 |
+
|--------|------|-------------|
|
| 24 |
+
| `audio` | Audio | Audio segment (16kHz) - speech only, silence stripped via VAD |
|
| 25 |
+
| `text` | string | Plain transcription (no timestamps) - backwards compatible |
|
| 26 |
+
| `text_ts` | string | Transcription WITH Whisper timestamp tokens (e.g., `<|0.00|>Hello<|0.50|>`) |
|
| 27 |
+
| `start_time` | string | Segment start in original audio (HH:MM:SS.mmm) |
|
| 28 |
+
| `end_time` | string | Segment end in original audio (HH:MM:SS.mmm) |
|
| 29 |
+
| `speech_duration` | float | Duration of speech in segment (excluding silence) |
|
| 30 |
+
| `word_timestamps` | list | Word-level timestamps (relative to speech-only audio) |
|
| 31 |
+
| `source_file` | string | Original audio filename |
|
| 32 |
+
|
| 33 |
+
## VAD Processing
|
| 34 |
+
|
| 35 |
+
Audio segments are processed with Silero VAD to match faster-whisper inference:
|
| 36 |
+
- Silence is stripped from audio (only speech regions remain)
|
| 37 |
+
- Timestamps are relative to the concatenated speech audio
|
| 38 |
+
- This ensures training data matches inference behavior
|
| 39 |
+
|
| 40 |
+
## Training Usage
|
| 41 |
+
|
| 42 |
+
For Whisper timestamp training, use the two-bucket approach:
|
| 43 |
+
- **Bucket A (50%)**: Use `text` - plain transcription without timestamps
|
| 44 |
+
- **Bucket B (50%)**: Use `text_ts` - transcription with Whisper timestamp tokens
|
| 45 |
+
|
| 46 |
+
## Usage
|
| 47 |
+
|
| 48 |
+
```python
|
| 49 |
+
from datasets import load_dataset
|
| 50 |
+
|
| 51 |
+
dataset = load_dataset("justinjohn-03/max_payne2")
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
---
|
| 55 |
+
*Prepared with [Trelis Studio](https://studio.trelis.com)*
|