Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
Cannot extract the features (columns) for the split 'train' of the config 'audio_prompts' of the dataset.
Error code:   FeaturesError
Exception:    ArrowInvalid
Message:      JSON parse error: Invalid value. in row 0
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 324, in _generate_tables
                  df = pandas_read_json(f)
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 38, in pandas_read_json
                  return pd.read_json(path_or_buf, **kwargs)
                         ~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/pandas/io/json/_json.py", line 815, in read_json
                  return json_reader.read()
                         ~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/pandas/io/json/_json.py", line 1014, in read
                  obj = self._get_object_parser(self.data)
                File "/usr/local/lib/python3.14/site-packages/pandas/io/json/_json.py", line 1040, in _get_object_parser
                  obj = FrameParser(json, **kwargs).parse()
                File "/usr/local/lib/python3.14/site-packages/pandas/io/json/_json.py", line 1176, in parse
                  self._parse()
                  ~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/pandas/io/json/_json.py", line 1392, in _parse
                  ujson_loads(json, precise_float=self.precise_float), dtype=None
                  ~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
              ValueError: Unexpected character found when decoding 'false'
              
              During handling of the above exception, another exception occurred:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/split/first_rows.py", line 243, in compute_first_rows_from_streaming_response
                  iterable_dataset = iterable_dataset._resolve_features()
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 4379, in _resolve_features
                  features = _infer_features_from_batch(self.with_format(None)._head())
                                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2661, in _head
                  return next(iter(self.iter(batch_size=n)))
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2839, in iter
                  for key, pa_table in ex_iterable.iter_arrow():
                                       ~~~~~~~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2377, in _iter_arrow
                  yield from self.ex_iterable._iter_arrow()
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 536, in _iter_arrow
                  for key, pa_table in iterator:
                                       ^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 419, in _iter_arrow
                  for key, pa_table in self.generate_tables_fn(**gen_kwags):
                                       ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 327, in _generate_tables
                  raise e
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 290, in _generate_tables
                  pa_table = paj.read_json(
                      io.BytesIO(batch), read_options=paj.ReadOptions(block_size=block_size)
                  )
                File "pyarrow/_json.pyx", line 342, in pyarrow._json.read_json
                File "pyarrow/error.pxi", line 155, in pyarrow.lib.pyarrow_internal_check_status
                  return check_status(status)
                File "pyarrow/error.pxi", line 92, in pyarrow.lib.check_status
                  raise convert_status(status)
              pyarrow.lib.ArrowInvalid: JSON parse error: Invalid value. in row 0

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

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.

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)

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

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

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.
Legacy detail (auto-generated by stage_audio_prompts_for_hf.py)

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.

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)

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

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

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.
Downloads last month
7,121