File size: 6,773 Bytes
c04b2df 8f177ce c04b2df 8f177ce b4d9394 c04b2df b4d9394 9556f3e c48e438 8f177ce c04b2df b4d9394 c04b2df 8f177ce 2f59dd4 8f177ce 2f59dd4 8f177ce 2f59dd4 8f177ce 2f59dd4 8f177ce 0df4330 8f177ce 0df4330 c48e438 0df4330 2f59dd4 0df4330 c48e438 0df4330 c48e438 0df4330 c48e438 0df4330 b4d9394 0df4330 b4d9394 0df4330 c48e438 0df4330 2f59dd4 0df4330 2f59dd4 0df4330 b4d9394 2f59dd4 b4d9394 0df4330 b4d9394 0df4330 b4d9394 0df4330 b4d9394 0df4330 b4d9394 0df4330 b4d9394 cdc8690 0df4330 8f177ce | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | ---
license: cc-by-nc-4.0
language:
- en
- ja
- ko
- zh
task_categories:
- text-to-speech
- audio-to-audio
size_categories:
- 1M<n<10M
configs:
- config_name: samples_showcase
data_files:
- split: train
path: samples/samelang_higgs_expressive_0714_0902/samples.jsonl
- config_name: samelang_expressive
data_files:
- split: train
path: data/samelang/**/*.parquet
- config_name: references
data_files:
- split: train
path: references.jsonl
- config_name: audio_prompts
data_files:
- split: train
path: audio_prompts/metadata.csv
- config_name: audio_prompts_expressive
data_files:
- split: train
path: audio_prompts_expressive/metadata.csv
default_config_name: samples_showcase
---
# Multi-lingual TTS Data (leeoxiang/multi_lingo_data)
Large-scale cross-lingual + same-lingual TTS corpus for training expressive
multi-lingual voice-clone models. Covers 4 target languages
(**en / ja / ko / zh**), synthesized by `bosonai/higgs-tts-3-4b`
via sglang-omni.
> **π§ Upload in progress** β the main `samelang_expressive` corpus
> (β 4.78 M rows / **β 3.3 TB**) is being pushed as parquet shards.
> Expect the shard count to grow over the next hours/days until each
> language reaches `train-XXXXX-of-00240.parquet`.
## π§ Listen first β `samples_showcase`
40 randomly-picked cross-lingual sample pairs (10 per target language)
from the `samelang_expressive` corpus, each paired with the *reference
wav* used for voice cloning so you can A/B the timbre. This is what the
HF viewer above shows by default.
```python
from datasets import load_dataset
ds = load_dataset("leeoxiang/multi_lingo_data", "samples_showcase", split="train")
print(ds[0]["text"], ds[0]["audio"]["sampling_rate"])
```
## π¦ Main corpus β `samelang_expressive` (**β 4.78 M rows, in progress**)
Same-language expansion: for every pseudo-reference (real Emilia speaker
cross-cloned into the target language via `audio_prompts_expressive`), we
synthesize **1000 target-language texts**, giving
`1200 speakers Γ 4 langs Γ 1000 texts β 4.8 M` cloned wavs.
- **Shards**: `data/samelang/<lang>/train-XXXXX-of-00240.parquet`
(each lang β 240 shards, β 5000 rows/shard)
- **Row schema**: `audio` (struct{bytes, path}, auto-cast to HF `Audio`
feature) + `text`, `lang`, `ref_id`, `speaker_id`, `text_id`,
`duration`, `sample_rate`, `ref_audio_path`, `ref_text`, `engine`,
`original_text`
- **Total size (fully uploaded)**: **β 3.3 TB** audio, β 4.78 M rows, β 11 k h
- **Engine**: `sglang-omni-higgs-audio-v3` with expressive relabel-based
prompt (drawn from the top-quality pool per source speaker)
### Streaming (recommended for 3.3 TB)
```python
from datasets import load_dataset
ds = load_dataset(
"leeoxiang/multi_lingo_data",
"samelang_expressive",
split="train",
streaming=True,
)
row = next(iter(ds))
print(row["lang"], row["text"][:40], row["audio"]["sampling_rate"])
```
### Single language
```python
from datasets import load_dataset
ds = load_dataset(
"leeoxiang/multi_lingo_data",
data_files="data/samelang/zh/train-*.parquet",
split="train",
streaming=True,
)
```
### Full download
```bash
hf download leeoxiang/multi_lingo_data \
--repo-type dataset \
--include 'data/samelang/**' \
--local-dir ./multi_lingo_data
```
## Supporting configs
- **`references`** β 1200 curated Emilia mono-lingual real-speaker clips.
- **`audio_prompts`** β 14.4 K cross-lingual synth from Step 1 (each
real Emilia speaker cloned into 4 target langs Γ 3 texts).
- **`audio_prompts_expressive`** β same as above with expressive prompt
selection; the pseudo-refs used to seed `samelang_expressive`.
<details><summary>Legacy detail (auto-generated by <code>stage_audio_prompts_for_hf.py</code>)</summary>
# Multi-lingual TTS Data (leeoxiang/multi_lingo_data)
Large-scale cross-lingual + same-lingual TTS corpus for training expressive
multi-lingual voice-clone models. Covers 4 target languages
(**en / ja / ko / zh**), synthesized by `bosonai/higgs-tts-3-4b`
via sglang-omni.
> **π§ Upload in progress** β the main `samelang_expressive` corpus
> (~4.78 M rows / **~3.3 TB**) is being pushed as parquet shards.
> Expect the shard count to grow over the next hours/days until each
> language reaches `train-XXXXX-of-00240.parquet`.
## π§ Listen first β `samples_showcase`
40 randomly-picked cross-lingual sample pairs (10 per target language)
from the `samelang_expressive` corpus, each paired with the *reference
wav* used for voice cloning so you can A/B the timbre. This is what the
HF viewer above shows by default.
```python
from datasets import load_dataset
ds = load_dataset("leeoxiang/multi_lingo_data", "samples_showcase", split="train")
print(ds[0]["text"], ds[0]["audio"]["sampling_rate"])
```
## π¦ Main corpus β `samelang_expressive` (**~4.78 M rows, in progress**)
Same-language expansion: for every pseudo-reference (real Emilia speaker
cross-cloned into the target language via `audio_prompts_expressive`), we
synthesize **1000 target-language texts**, giving
`1200 speakers Γ 4 langs Γ 1000 texts β 4.8 M` cloned wavs.
- **Shards**: `data/samelang/<lang>/train-XXXXX-of-00240.parquet`
(each lang β 240 shards, ~5000 rows/shard)
- **Row schema**: `audio` (struct{bytes, path}, auto-cast to HF `Audio`
feature) + `text`, `lang`, `ref_id`, `speaker_id`, `text_id`,
`duration`, `sample_rate`, `ref_audio_path`, `ref_text`, `engine`,
`original_text`
- **Total size (fully uploaded)**: **~3.3 TB** audio, ~4.78 M rows, ~11 k h
- **Engine**: `sglang-omni-higgs-audio-v3` with expressive relabel-based
prompt (drawn from the top-quality pool per source speaker)
### Streaming (recommended for 3.3 TB)
```python
from datasets import load_dataset
ds = load_dataset(
"leeoxiang/multi_lingo_data",
"samelang_expressive",
split="train",
streaming=True,
)
row = next(iter(ds))
print(row["lang"], row["text"][:40], row["audio"]["sampling_rate"])
```
### Single language
```python
from datasets import load_dataset
ds = load_dataset(
"leeoxiang/multi_lingo_data",
data_files="data/samelang/zh/train-*.parquet",
split="train",
streaming=True,
)
```
### Full download
```bash
hf download leeoxiang/multi_lingo_data \
--repo-type dataset \
--include 'data/samelang/**' \
--local-dir ./multi_lingo_data
```
## Supporting configs
- **`references`** β 1200 curated Emilia mono-lingual real-speaker clips.
- **`audio_prompts`** β 14.4 K cross-lingual synth from Step 1 (each
real Emilia speaker cloned into 4 target langs Γ 3 texts).
- **`audio_prompts_expressive`** β same as above with expressive prompt
selection; the pseudo-refs used to seed `samelang_expressive`.
</details>
|