ChristophSchuhmann commited on
Commit
e8eebdb
·
verified ·
1 Parent(s): ba723a3

Card: files/audio/format section, verified join, 212-column reference (COLUMNS.md), parquet config, tNN/pcNN correction

Browse files
Files changed (1) hide show
  1. README.md +77 -14
README.md CHANGED
@@ -4,6 +4,11 @@ task_categories: [text-to-speech, audio-classification]
4
  language: [en, de, fr, es, it, nl, pl, pt]
5
  tags: [speech, emotion, voice, trajectory, tts, moss, webdataset]
6
  size_categories: [100K<n<1M]
 
 
 
 
 
7
  ---
8
 
9
  # LAION Emotional-Trajectory Speech — tier T≥0.80
@@ -202,13 +207,68 @@ the chain label and inherit exactly this caveat.
202
 
203
  This is the **CLEAN** release: `podcast` and `evasnippets` are removed for provenance, and `kartoffelphon` is held pending a licensing review.
204
 
205
- ## Files
206
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  ```
208
- traj-t80-NNNNN.tar WebDataset: <chain>.mp3, <chain>.json, <chain>.moss.npy
209
- traj-t80-NNNNN.parquet one row per chain, all columns below
210
- traj-t80-NNNNN.done per-shard verification counts
211
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
212
 
213
  ## Loading
214
 
@@ -240,18 +300,21 @@ for s in info["segments"]:
240
  print(s["start"], s["burst_note"], s["tag"], s["text"][:60])
241
  ```
242
 
243
- ## Two nesting selectors, both shipped
244
 
245
- `tNN` columns (**the default**) select `qmax >= T` under each row's own rule. Nested by
246
- construction for both arms.
247
 
248
- `pcNN` columns select the packer's own per-cell population (`T == that tier's own T`).
249
- For `vprof_vc` these were packed **independently per cell** with a fresh `used` mask, so
250
- each packing had re-packing freedom a nested subset cannot have. That is why the per-cell
251
- high-T counts look larger — they are **not subsets of anything**.
252
 
253
- > **`pcNN` must never be summed with, differenced against, or nested inside `tNN`.** They
254
- > are two different selections of the same underlying chains, not two parts of one.
 
 
 
 
255
 
256
  ## Source datasets and licences
257
 
 
4
  language: [en, de, fr, es, it, nl, pl, pt]
5
  tags: [speech, emotion, voice, trajectory, tts, moss, webdataset]
6
  size_categories: [100K<n<1M]
7
+ configs:
8
+ - config_name: default
9
+ data_files:
10
+ - split: train
11
+ path: traj-t80-*.parquet
12
  ---
13
 
14
  # LAION Emotional-Trajectory Speech — tier T≥0.80
 
207
 
208
  This is the **CLEAN** release: `podcast` and `evasnippets` are removed for provenance, and `kartoffelphon` is held pending a licensing review.
209
 
210
+ ## Files, audio and formats
211
 
212
+ **2,402 files at the repository root, in 800 numbered triples plus this card.**
213
+
214
+ | path | count | what it is |
215
+ |---|--:|---|
216
+ | `traj-t80-NNNNN.tar` | 800 | **the audio**, plus the per-chain JSON and the MOSS tokens |
217
+ | `traj-t80-NNNNN.parquet` | 800 | **the metadata**: one row per chain, 212 columns |
218
+ | `traj-t80-NNNNN.done` | 800 | per-shard verification counts written after the shard was sealed |
219
+
220
+ `NNNNN` runs `00000`..`00799`. Shard *n* of one kind always describes shard *n* of the other; the
221
+ last shard is short (165 chains, the rest hold 400) — 799 x 400 + 165 = **319,765**.
222
+
223
+ ### Inside a tar — three members per chain, one stem
224
+
225
+ | member | format | detail |
226
+ |---|---|---|
227
+ | `<stem>.mp3` | **MPEG-1 Layer III, 48 kHz, 96 kbps CBR, mono** | the crossfaded chain, read out of the shipped bytes |
228
+ | `<stem>.json` | JSON | `chain_id`, both general captions, `script`, `segments`, `constant_descriptors`, `speaker_clause`, `tier_max`, `rules`, `dur_s`, `moss_frames`, `n_score_parts` |
229
+ | `<stem>.moss.npy` | `numpy` `uint16`, shape `[T, 12]` | MOSS-Audio-Tokenizer-v2 codes of the **rendered chain**, 12.5 fps, one frame = 12 tokens = 80 ms |
230
+
231
+ There is no `.vclap.npy` member here and no waveform format other than MP3.
232
+
233
+ ### The join — parquet row to tar member
234
+
235
+ `shard` is the tar basename **without** the `.tar` extension, and the member stem is `chain_id`
236
+ with `|` replaced by `__`:
237
+
238
+ ```python
239
+ tar_path = row["shard"] + ".tar" # "traj-t80-00000" -> traj-t80-00000.tar
240
+ member_stem = row["chain_id"].replace("|", "__") # "emolia|DE_x_W0,DE_x_W1,..." -> "emolia__DE_x_W0,DE_x_W1,..."
241
  ```
242
+
243
+ Verified on `traj-t80-00000`: the parquet's first three `chain_id` values map to the tar's first
244
+ three member groups, member for member.
245
+
246
+ Member names are long (a chain names all five of its source uids) and exceed the 100-byte POSIX
247
+ tar name field, so the tars use GNU long-name records. Every standard tar reader — Python's
248
+ `tarfile`, GNU `tar`, `webdataset` — handles this; a hand-rolled 512-byte header parser does not,
249
+ and will silently hand you truncated names.
250
+
251
+ ## Columns
252
+
253
+ **212 columns per row.** The full generated reference, with a one-line meaning for every column, is
254
+ in **[`COLUMNS.md`](COLUMNS.md)**. The groups:
255
+
256
+ | group | columns | what it is |
257
+ |---|--:|---|
258
+ | identity and provenance | 9 | `chain_id`, `chain_key`, `shard`, `dataset`, `arm`, `uids`, `speaker`, `track`, `k` |
259
+ | language | 4 | `lang_iso` (**first clip only**), `langs`, `lang_mixed`, `n_langs` |
260
+ | audio and rendering | 5 | `dur_s`, `dur_s_soundfile`, `peak_clipped`, `lvl_spread_db`, `fades_ms` |
261
+ | MOSS tokens | 3 | `moss_frames`, `moss_n_vq`, `moss_frames_expected` |
262
+ | text | 3 | `script_text`, `segments` (the per-clip records), `constant_descriptors` |
263
+ | captions | 9 | `caption_general_a`/`_b` and the parts they were built from |
264
+ | emotion | 40 | `emo_*`, Empathic-Insight intensities **of the rendered chain** |
265
+ | voice character | 114 | `vn_<CODE>_reg` + `vn_<CODE>_bucket`, 57 VoiceNet dimensions |
266
+ | quality | 6 | 4 `qual_*` heads, `genuineness_0_6`, `blend_0_10` |
267
+ | vocal bursts | 2 | `n_burst_detected`, `n_burst_scripted` — **two different claims**, see below |
268
+ | trajectory qualification | 17 | `tier_max`, `qmax`, `cmax`, `C`, `rules`, `dim_a`/`dim_b`, the speaker cosines, the scoring-split fields |
269
+
270
+ **The 40 `emo_*`, 114 `vn_*` and 4 `qual_*` columns describe the RENDERED CHAIN**, scored on the
271
+ crossfaded audio, not averaged from the source clips. Per-clip values are inside `segments`.
272
 
273
  ## Loading
274
 
 
300
  print(s["start"], s["burst_note"], s["tag"], s["text"][:60])
301
  ```
302
 
303
+ ## Selecting a tier
304
 
305
+ Every row of this release already satisfies `tier_max >= 0.80` that is what the tier is. Within
306
+ it, `tier_max` (equivalently `qmax`, equal to it on every row here) is the selector:
307
 
308
+ ```python
309
+ harder = meta[meta["tier_max"] >= 0.90]
310
+ ```
 
311
 
312
+ **A correction to earlier prose.** Descriptions of this dataset have mentioned `tNN` and `pcNN`
313
+ selector columns. **They are not in this release.** Checked on the first, middle and last shard:
314
+ 212 columns each, none of them `tNN` or `pcNN`. Those selectors belong to the upstream chain table
315
+ the tiers were packed from, where the distinction mattered — `tNN` nested by construction, `pcNN`
316
+ a per-cell packing that is *not* a subset of anything and must never be summed with or nested
317
+ inside `tNN`. Downstream of the packer only `tier_max` survives, and it is the nested one.
318
 
319
  ## Source datasets and licences
320