shangeth commited on
Commit
f5223f9
·
verified ·
1 Parent(s): 8af824a

Update dataset card

Browse files
Files changed (1) hide show
  1. README.md +77 -28
README.md CHANGED
@@ -1,30 +1,79 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: string
6
- - name: text
7
- dtype: string
8
- - name: speaker_id
9
- dtype: int32
10
- - name: accent
11
- dtype: string
12
- - name: codes
13
- list:
14
- list: int16
15
- - name: n_frames
16
- dtype: int32
17
- - name: k_codebooks
18
- dtype: int32
19
- splits:
20
- - name: train
21
- num_bytes: 35510068
22
- num_examples: 44283
23
- download_size: 21693746
24
- dataset_size: 35510068
25
- configs:
26
- - config_name: default
27
- data_files:
28
- - split: train
29
- path: data/train-*
30
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - text-to-speech
7
+ tags:
8
+ - mimi
9
+ - neural-codec
10
+ - speech-synthesis
11
+ - vctk
12
+ - audio-tokens
13
+ - accents
14
+ pretty_name: VCTK Mimi Codes (mic1)
15
+ size_categories:
16
+ - 10K<n<100K
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  ---
18
+
19
+ # VCTK — Mimi Codes (mic1)
20
+
21
+ Pre-extracted [Kyutai Mimi](https://huggingface.co/kyutai/mimi) tokens for the
22
+ [VCTK Corpus](https://datashare.ed.ac.uk/handle/10283/2950) — 109 speakers across
23
+ 11 British, Scottish, and American accents. ~44h of read speech.
24
+
25
+ **Only mic1 recordings are included.** Each utterance was recorded with two
26
+ microphones; mic1 (close microphone) gives a cleaner signal. Mic2 duplicates are
27
+ excluded. Utterance IDs end in `_mic1` (e.g. `p225_001_mic1`).
28
+
29
+ ## Schema
30
+
31
+ | Column | Type | Notes |
32
+ |---|---|---|
33
+ | `id` | string | e.g. `p225_001_mic1` |
34
+ | `text` | string | read sentence, mixed-case with punctuation |
35
+ | `speaker_id` | int32 | numeric speaker ID (225 for p225) |
36
+ | `accent` | string | e.g. `English`, `Scottish`, `American` |
37
+ | `codes` | `int16[k=8][n_frames]` | Mimi codebook indices @ 12.5 fps |
38
+ | `n_frames` | int32 | |
39
+ | `k_codebooks` | int32 | 8 |
40
+
41
+ ## Extraction details
42
+
43
+ - **Source:** [`sanchit-gandhi/vctk`](https://huggingface.co/datasets/sanchit-gandhi/vctk)
44
+ - **Codec:** [`kyutai/mimi`](https://huggingface.co/kyutai/mimi) @ 24 kHz, 12.5 fps
45
+ - **Resampling:** 48 kHz → 24 kHz
46
+ - **Filter:** `file` column stem must end with `_mic1`
47
+
48
+ ## Usage
49
+
50
+ ```python
51
+ from datasets import load_dataset
52
+ import torch
53
+
54
+ ds = load_dataset("shangeth/vctk-mimi-codes", split="train")
55
+ ex = ds[0]
56
+ codes = torch.tensor(ex["codes"], dtype=torch.long) # [8, n_frames]
57
+ print(ex["id"], ex["accent"], "→", ex["text"])
58
+ ```
59
+
60
+ ## Citation
61
+
62
+ ```bibtex
63
+ @misc{wren2026,
64
+ title = {Wren: A Family of Small Open-Weight Models for Unified Speech-Text Modelling},
65
+ author = {Shangeth Rajaa},
66
+ year = {2026},
67
+ url = {https://github.com/shangeth/wren}
68
+ }
69
+
70
+ @inproceedings{veaux2017cstr,
71
+ title = {CSTR VCTK Corpus: English Multi-speaker Corpus for CSTR Voice Cloning Toolkit},
72
+ author = {Veaux, Christophe and Yamagishi, Junichi and MacDonald, Kirsten},
73
+ year = {2017}
74
+ }
75
+ ```
76
+
77
+ ## License
78
+
79
+ CC-BY-4.0.