deepdml commited on
Commit
78fb00c
·
verified ·
1 Parent(s): 5b022b9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -121,7 +121,7 @@ Portuguese, Italian).
121
 
122
  ## Corpus Statistics
123
 
124
- Each row in the dataset corresponds to **one VTT segment** (individual audio clip + transcript).
125
  The table below reflects sentence counts and total audio duration as reported in `docs/statistics.txt` per language.
126
 
127
  ### Arabic (`ar`)
@@ -161,13 +161,13 @@ The table below reflects sentence counts and total audio duration as reported in
161
  ### Schema
162
 
163
  Each example corresponds to **one audio segment** extracted from a full TEDx talk
164
- using the VTT timestamps.
165
 
166
  | Field | Type | Description |
167
  |--------------|-------------------|---------------------------------------------------------|
168
  | `id` | `string` | Unique segment id: `<talk_stem>_<index>` (e.g. `14zpc3Nj_e4_0003`) |
169
  | `audio` | `Audio` | Audio float32 waveform of the segment |
170
- | `transcript` | `string` | Transcription text from the VTT file |
171
  | `duration` | `float32` | Duration of the audio segment **in seconds** |
172
  | `talk_id` | `string` | Source talk file stem |
173
  | `segment_id` | `int32` | 0-based index of the segment within its talk |
@@ -226,11 +226,11 @@ Each language pack (`mtedx_<lang>.tgz`) contains:
226
 
227
  - `data/<split>/wav/` — Full-talk FLAC audio files
228
  - `data/<split>/vtt/` — WebVTT transcript files (`<id>.<lang>.vtt`)
229
- - `data/<split>/txt/` — Plain-text transcripts
230
  - `docs/statistics.txt` — Per-split statistics
231
 
232
  The upload script (`create_mtedx_dataset.py`) slices the full-talk FLAC files
233
- into individual segments using the VTT timestamps and discards segments shorter
234
  than 0.5 s or longer than 30 s.
235
 
236
  ---
 
121
 
122
  ## Corpus Statistics
123
 
124
+ Each row in the dataset corresponds to **one segment** (individual audio clip + transcript).
125
  The table below reflects sentence counts and total audio duration as reported in `docs/statistics.txt` per language.
126
 
127
  ### Arabic (`ar`)
 
161
  ### Schema
162
 
163
  Each example corresponds to **one audio segment** extracted from a full TEDx talk
164
+ using the Kaldi segments timestamps file.
165
 
166
  | Field | Type | Description |
167
  |--------------|-------------------|---------------------------------------------------------|
168
  | `id` | `string` | Unique segment id: `<talk_stem>_<index>` (e.g. `14zpc3Nj_e4_0003`) |
169
  | `audio` | `Audio` | Audio float32 waveform of the segment |
170
+ | `transcript` | `string` | Transcription text |
171
  | `duration` | `float32` | Duration of the audio segment **in seconds** |
172
  | `talk_id` | `string` | Source talk file stem |
173
  | `segment_id` | `int32` | 0-based index of the segment within its talk |
 
226
 
227
  - `data/<split>/wav/` — Full-talk FLAC audio files
228
  - `data/<split>/vtt/` — WebVTT transcript files (`<id>.<lang>.vtt`)
229
+ - `data/<split>/txt/` — Segments and Plain-text transcripts
230
  - `docs/statistics.txt` — Per-split statistics
231
 
232
  The upload script (`create_mtedx_dataset.py`) slices the full-talk FLAC files
233
+ into individual segments using the kaldi segments timestamps and discards segments shorter
234
  than 0.5 s or longer than 30 s.
235
 
236
  ---