Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- audio
|
| 4 |
+
- speech
|
| 5 |
+
- whisper
|
| 6 |
+
- dataset
|
| 7 |
+
---
|
| 8 |
+
# pilotgpt-test
|
| 9 |
+
|
| 10 |
+
Speech dataset prepared with Trelis Studio.
|
| 11 |
+
|
| 12 |
+
## Statistics
|
| 13 |
+
|
| 14 |
+
| Metric | Value |
|
| 15 |
+
|--------|-------|
|
| 16 |
+
| Source files | 2 |
|
| 17 |
+
| Validation samples | 22 |
|
| 18 |
+
| Total duration | 4.6 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("Trelis/pilotgpt-test")
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
---
|
| 55 |
+
*Prepared with [Trelis Studio](https://studio.trelis.com)*
|