RonanMcGovern commited on
Commit
d1b7c8c
·
verified ·
1 Parent(s): d901c26

Upload README.md with huggingface_hub

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