meldynamics-a commited on
Commit
f428053
·
verified ·
1 Parent(s): 48469b5

Update dataset card (final)

Browse files
Files changed (1) hide show
  1. README.md +25 -61
README.md CHANGED
@@ -95,10 +95,6 @@ configs:
95
  data_files:
96
  - split: train
97
  path: phon/train-*
98
- - config_name: phon-long
99
- data_files:
100
- - split: train
101
- path: phon-long/train-*
102
  - config_name: read
103
  data_files:
104
  - split: train
@@ -212,39 +208,13 @@ vowels `æ ə ɜ ē ɘ ɨ ā`, ...).
212
 
213
  ### Configurations (corpus parts)
214
 
215
- Each corpus part is a **config**; load one with the `name` argument. `phon-long`
216
- is a derived long-form view of `phon` (same audio, regrouped per recording with
217
- timestamped transcripts) — it adds no new hours.
218
 
219
  - **`dial`** — Dialectal speech — regional varieties of Lithuanian. Transcripts use an extended phonetic/dialectal notation (stress marks, palatalization, dialect-specific vowels). One phrase per file.
220
  - **`phon`** — Phonetically annotated speech. Full recordings are sliced into phrases using the Praat TextGrid `ortho` (orthographic) tier; the grids' `phono` (phonetic-transcription) tier is aligned to each phrase by time overlap and exposed in the **`phono`** column alongside `text`. The source grids additionally carry `phones`, `syll` and `words` tiers.
221
- - **`phon-long`** — Long-form (per-recording) view of the **`phon`** part: one row per **full, un-sliced recording** paired with a **timestamped** transcript. `text` and `phono` hold one `[s.sss-s.sss] …` line per phrase, `transcript` is the plain (untimed) transcript, and `transcript_vtt` is a WebVTT rendering. The bracket timestamps are collision-free (labels never contain `[`/`]`/newlines), so they parse unambiguously without a separate structured column. Same audio as `phon`, regrouped for long-form / streaming ASR and forced alignment (it does not add new hours — it re-views the `phon` audio). Timestamp format is derived from the data: phon recordings are sub-minute with millisecond boundaries, so brackets are seconds with 3 decimals.
222
  - **`read`** — Read speech (prompted reading). One phrase per file with normalized, lower-cased transcripts.
223
  - **`spon`** — Spontaneous speech (radio, TV, dictaphone, etc.). One phrase per file with normalized, lower-cased transcripts.
224
 
225
- #### `phon` vs `phon-long` — same audio, two views
226
-
227
- `phon-long` does **not** add new recordings or hours: it repackages the **same
228
- source audio** as `phon`, kept as whole recordings instead of per-phrase slices.
229
- That audio is therefore stored **twice** in this repo (~74 GB in each config), by
230
- design — so you can pick whichever granularity fits without slicing/concatenating
231
- yourself. **Load one view for your task;** you only need both if you want
232
- phrase-level clips *and* long-form context.
233
-
234
- | | `phon` | `phon-long` |
235
- |---|--------|-------------|
236
- | One row is | a single phrase | a full source recording (~30 s, ~15 phrases) |
237
- | Rows | 1,084,228 | 72,822 |
238
- | `audio` | phrase slice | whole recording, un-sliced (lossless passthrough) |
239
- | `text` | phrase transcript | timestamped multiline transcript (`[s.sss-s.sss] …`) |
240
- | `phono` | phrase phonetics | timestamped multiline phonetics |
241
- | Timing | `start_ms` / `end_ms` per row | in-line `[s.sss-s.sss]` brackets + `transcript_vtt` per row |
242
- | Extra fields | `segment_id` | `transcript`, `transcript_vtt`, `num_segments` |
243
- | Best for | utterance-level ASR / TTS | long-form / streaming ASR, forced alignment |
244
-
245
- The two link up via `file_hash`: every `phon` phrase carries the `file_hash` of
246
- its `phon-long` recording (and a `segment_id` index into that recording).
247
-
248
  ### Data Instances
249
 
250
  A representative example (the `audio.array` waveform is shown truncated):
@@ -269,18 +239,16 @@ A representative example (the `audio.array` waveform is shown truncated):
269
 
270
  ### Data Fields
271
 
272
- The configs do **not** all share one schema: `phon-long` carries its own columns,
273
- and within the other parts several fields are populated only where the source
274
- encodes them. Field meanings first, then a per-config availability matrix.
275
 
276
  | Field | Type | Description |
277
  |-------|------|-------------|
278
  | `audio` | `Audio` | Decoded to a waveform `array` + `sampling_rate` (44100), backed by mono FLAC bytes. |
279
- | `text` | `string` | Transcript (normalized; `dial` = phonetic/dialectal; `phon-long` = timestamped multiline, one `[s.sss-s.sss] …` line per phrase). |
280
- | `phono` | `string` | Phonetic transcription, SAMPA-style, from the TextGrid `phono` tier (`phon` = per phrase; `phon-long` = timestamped multiline). |
281
- | `transcript` | `string` | Plain transcript, phrases joined, no timestamps (`phon-long`). |
282
- | `transcript_vtt` | `string` | WebVTT (`HH:MM:SS.mmm`) rendering of the timestamped transcript (`phon-long`). |
283
- | `category` | `string` | Corpus part: `dial` / `phon` / `phon-long` / `read` / `spon`. |
284
  | `speaker_id` | `string` | Speaker code, where the path encodes one. |
285
  | `gender` | `string` | `Male` / `Female`. |
286
  | `age_group` | `string` | `0-12` / `13-17` / `18-60` / `60+`. |
@@ -292,34 +260,30 @@ encodes them. Field meanings first, then a per-config availability matrix.
292
  | `file_hash` | `string` | Content-hash id of the source recording. |
293
  | `segment_id` | `string` | Phrase index within the source recording. |
294
  | `start_ms` / `end_ms` | `int32` | Phrase boundaries within the source recording. |
295
- | `num_segments` | `int32` | Number of phrases in the recording (`phon-long`). |
296
  | `duration_ms` | `int32` | Clip duration in milliseconds. |
297
 
298
  #### Field availability by config
299
 
300
  **●** populated · **○** present but always empty · **–** not a column in this config.
301
 
302
- | Field | `dial` | `phon` | `phon-long` | `read` | `spon` |
303
- |-------|:------:|:------:|:-----------:|:------:|:------:|
304
- | `audio` | ● | ● | ● | ● | ● |
305
- | `text` | ● | ● | ● | ● | ● |
306
- | `phono` | – | ● | ● | – | ○ |
307
- | `transcript` | | | ● | | – |
308
- | `transcript_vtt` | | | ● | | – |
309
- | `category` | ● | ● | | ● | ● |
310
- | `speaker_id` | ● | | | ● | ○ |
311
- | `gender` | ● | ● | ● | ○ | ● |
312
- | `age_group` | ● | ● | ● | ○ | ● |
313
- | `lang_type` | ● | | | ○ | ● |
314
- | `source` | | | ● | ○ | ● |
315
- | `region` | ● | | | | ○ |
316
- | `county` | ○ | | | ● | ○ |
317
- | `file_path` | | ● | | | ● |
318
- | `file_hash` | | | ● | ○ | |
319
- | `segment_id` | | ● | | | ○ |
320
- | `start_ms` / `end_ms` | ○ | ● | – | ○ | ○ |
321
- | `num_segments` | – | – | ● | – | – |
322
- | `duration_ms` | ● | ● | ● | ● | ● |
323
 
324
  ### Data Splits
325
 
 
95
  data_files:
96
  - split: train
97
  path: phon/train-*
 
 
 
 
98
  - config_name: read
99
  data_files:
100
  - split: train
 
208
 
209
  ### Configurations (corpus parts)
210
 
211
+ Each corpus part is a **config**; load one with the `name` argument.
 
 
212
 
213
  - **`dial`** — Dialectal speech — regional varieties of Lithuanian. Transcripts use an extended phonetic/dialectal notation (stress marks, palatalization, dialect-specific vowels). One phrase per file.
214
  - **`phon`** — Phonetically annotated speech. Full recordings are sliced into phrases using the Praat TextGrid `ortho` (orthographic) tier; the grids' `phono` (phonetic-transcription) tier is aligned to each phrase by time overlap and exposed in the **`phono`** column alongside `text`. The source grids additionally carry `phones`, `syll` and `words` tiers.
 
215
  - **`read`** — Read speech (prompted reading). One phrase per file with normalized, lower-cased transcripts.
216
  - **`spon`** — Spontaneous speech (radio, TV, dictaphone, etc.). One phrase per file with normalized, lower-cased transcripts.
217
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
218
  ### Data Instances
219
 
220
  A representative example (the `audio.array` waveform is shown truncated):
 
239
 
240
  ### Data Fields
241
 
242
+ The configs do **not** all share one schema: within each part a field is
243
+ populated only where the source encodes it. Field meanings first, then a
244
+ per-config availability matrix.
245
 
246
  | Field | Type | Description |
247
  |-------|------|-------------|
248
  | `audio` | `Audio` | Decoded to a waveform `array` + `sampling_rate` (44100), backed by mono FLAC bytes. |
249
+ | `text` | `string` | Transcript (normalized; `dial` = phonetic/dialectal). |
250
+ | `phono` | `string` | Phonetic transcription, SAMPA-style, from the TextGrid `phono` tier (`phon` = per phrase). |
251
+ | `category` | `string` | Corpus part: `dial` / `phon` / `read` / `spon`. |
 
 
252
  | `speaker_id` | `string` | Speaker code, where the path encodes one. |
253
  | `gender` | `string` | `Male` / `Female`. |
254
  | `age_group` | `string` | `0-12` / `13-17` / `18-60` / `60+`. |
 
260
  | `file_hash` | `string` | Content-hash id of the source recording. |
261
  | `segment_id` | `string` | Phrase index within the source recording. |
262
  | `start_ms` / `end_ms` | `int32` | Phrase boundaries within the source recording. |
 
263
  | `duration_ms` | `int32` | Clip duration in milliseconds. |
264
 
265
  #### Field availability by config
266
 
267
  **●** populated · **○** present but always empty · **–** not a column in this config.
268
 
269
+ | Field | `dial` | `phon` | `read` | `spon` |
270
+ |-------|:------:|:------:|:------:|:------:|
271
+ | `audio` | ● | ● | ● | ● |
272
+ | `text` | ● | ● | ● | ● |
273
+ | `phono` | – | ● | – | ○ |
274
+ | `category` | | | ● | |
275
+ | `speaker_id` | | | ● | |
276
+ | `gender` | ● | ● | | ● |
277
+ | `age_group` | ● | | | ● |
278
+ | `lang_type` | ● | ● | ○ | ● |
279
+ | `source` | ● | ● | ○ | ● |
280
+ | `region` | ● | | | ○ |
281
+ | `county` | | | ● | ○ |
282
+ | `file_path` | ● | | | |
283
+ | `file_hash` | ○ | | | ● |
284
+ | `segment_id` | | ● | | |
285
+ | `start_ms` / `end_ms` | | ● | ○ | |
286
+ | `duration_ms` | | ● | | |
 
 
 
287
 
288
  ### Data Splits
289