Dataset Viewer
The dataset viewer is not available for this subset.
Cannot get the split names for the config 'default' of the dataset.
Exception:    SplitsNotFoundError
Message:      The split names could not be parsed from the dataset config.
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
                  for split_generator in builder._split_generators(
                                         ~~~~~~~~~~~~~~~~~~~~~~~~~^
                      StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 81, in _split_generators
                  first_examples = list(islice(pipeline, self.NUM_EXAMPLES_FOR_FEATURES_INFERENCE))
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 32, in _get_pipeline_from_tar
                  fs: fsspec.AbstractFileSystem = fsspec.filesystem("memory")
                                                  ~~~~~~~~~~~~~~~~~^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/fsspec/registry.py", line 302, in filesystem
                  cls = get_filesystem_class(protocol)
                File "/usr/local/lib/python3.14/site-packages/fsspec/registry.py", line 239, in get_filesystem_class
                  raise ValueError(f"Protocol not known: {protocol}")
              ValueError: Protocol not known: memory
              
              The above exception was the direct cause of the following exception:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 71, in compute_split_names_from_streaming_response
                  for split in get_dataset_split_names(
                               ~~~~~~~~~~~~~~~~~~~~~~~^
                      path=dataset,
                      ^^^^^^^^^^^^^
                      config_name=config,
                      ^^^^^^^^^^^^^^^^^^^
                      token=hf_token,
                      ^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
                  info = get_dataset_config_info(
                      path,
                  ...<6 lines>...
                      **config_kwargs,
                  )
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
                  raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
              datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.

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.

FlexiSLM-Data — Speech-to-Speech Part (4M)

Paper Demo Code

FlexiSLM-Data is a large-scale, single-turn English speech-to-speech dialogue dataset for training FlexiSLM, a spoken language model. This repository contains the paired prompt-and-response audio portion of the release in WebDataset format.

Related data releases

Data construction pipeline

  1. Prompt collection and response generation (released in FlexiSLM/FlexiSLM-Data-5M-t2t) Text prompts are collected from public QA, instruction-following, and dialogue datasets (see the table below). For multi-turn datasets, the user's first-turn utterance is used as the prompt; samples whose first turn is a generic greeting (e.g. "Hello") are skipped. Then, all text responses are generated with Qwen3-Omni-30B-A3B; the responses shipped with the source datasets are discarded. We use a spoken language model rather than a text-only LLM because Qwen3-Omni produces speech-friendly responses: short, conversational, and free of formatting that does not transfer to speech (bullet points, code blocks, long enumerations). The text version of the prompt is fed to the model rather than its synthesized speech, since text-input responses are typically more accurate.
  2. Speech synthesis. (released in FlexiSLM/FlexiSLM-Data-4M-s2s) Responses are synthesized with Qwen3-TTS using the fixed speaker "Ryan". Prompts are synthesized with Fish-Audio TTS, with speaker prompts randomly sampled from English Emilia utterances longer than 5 seconds. This yields the 4,222,459 samples and 26,735 hours of audio shipped here.
  3. Quality filtering and mp3-format compression. (released in FlexiSLM/FlexiSLM-Data-2M-s2s-compact) Before any shards are written, this release applies prompt deduplication and response-text filtering. The kept subset uses normalized prompt deduplication first, then drops responses that contain !, contain ?, look non-English, or look like code. From 4,222,459 raw rows, 1,790,681 are filtered out and 2,431,778 remain. The punctuation-based filtering is empirical: we find that questions with more knowledge density are responded more formally, while casual questions tend to be responded with ! or ?.

Prompt sources

Only the user prompts come from these datasets; their original answers are not used.

Dataset Type # Prompts
TriviaQA QA 138K
WebQuestions QA 3.8K
TyDiQA Multilingual QA 167K
Alpaca Instruction 52K
SmolTalk2 Instruction / Dialogue 385K
SODA Dialogue 1.48M
Magpie-Pro Instruction / Dialogue 1M
UltraChat Multi-turn Dialogue 949K
HH-RLHF Dialogue / Preference 167K
WildChat Real-user Dialogue 159K

Statistics

value
Samples (train) 4,216,459 across 1,406 shards
Samples (validation) 6,000 across 2 shards
Samples (total) 4,222,459
Prompt audio 7,317.3 hours (26,342,351 s)
Response audio 19,418.2 hours (69,905,434 s)
Total audio 26,735.5 hours (96,247,785 s)
Mean prompt duration 6.24 s
Mean response duration 16.56 s

Layout

Each sample is three tar members sharing an eight-digit key, unique across every shard and both splits:

00000001.question.wav   # user prompt, 44.1 kHz 16-bit mono, Fish-Audio TTS
00000001.response.mp3   # assistant reply, Qwen3-TTS speaker "Ryan"
00000001.json           # transcripts and per-sample metadata
  • train: 4216459 samples across 1406 shards (shards/train-{00000..01405}-of-01406.tar)
  • validation: 6000 samples across 2 shards (shards/validation-{00000..00001}-of-00002.tar)

Exact per-shard sample counts and byte offsets live in shards.json; per-sample records live in manifest.jsonl.

Each metadata record carries:

field description
key Eight-digit WebDataset key
uuid Stable identifier, shared with the t2t release
split train or validation
shard Shard the sample lives in
question_text / response_text Transcripts of the two audio members
question_duration / response_duration Seconds
total_audio_duration Seconds
num_tokens_est Estimated audio tokens at 12 tokens/s

Loading

from datasets import load_dataset

dataset = load_dataset("FlexiSLM/FlexiSLM-Data-4M-s2s", split="train", streaming=True)

Or straight from WebDataset, using the brace pattern recorded in shards.json:

import webdataset as wds

url = "https://huggingface.co/datasets/FlexiSLM/FlexiSLM-Data-4M-s2s/resolve/main/shards/train-{00000..00099}-of-01406.tar"
dataset = wds.WebDataset(f"pipe:curl -sL {url}")

Limitations

  • Single-turn only. Multi-turn sources are truncated to their first user turn.
  • Unfiltered. These are the raw synthesized pairs before the format, correctness, and ASR-based filtering described above; some samples contain artifacts, mismatched audio, or non-English text.
  • Synthetic speech. All audio is TTS-generated, with a single fixed response voice; it does not reflect real conversational acoustics, noise, or speaker diversity on the response side.
  • Model-generated text. Every response comes from Qwen3-Omni-30B-A3B and inherits its biases and factual errors; none are human-verified.
  • Derived data. Prompts inherit the licenses and terms of their source datasets; please check each source before redistribution.

References

  • Qwen3-Omni — Xu et al., 2025
  • Qwen3-TTS — Hu et al., 2026
  • Fish-Audio TTS — Liao et al., 2024
  • Emilia — He et al., 2024
  • MLS — Pratap et al., 2020
  • LibriSpeech — Panayotov et al., 2015
  • LLaSO-Instruct — Sun et al., 2025
  • TriviaQA — Joshi et al., 2017
  • WebQuestions — Berant et al., 2013
  • TyDiQA — Clark et al., 2020
  • Alpaca — Taori et al., 2023
  • SODA — Kim et al., 2023
  • Magpie — Xu et al., 2025
  • UltraChat — Ding et al., 2023
  • HH-RLHF — Bai et al., 2022
  • WildChat — Zhao et al., 2024
Downloads last month
314

Paper for FlexiSLM/FlexiSLM-Data-4M-s2s