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 66, 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.

Multilingual LibriSpeech (English, ≤20s) — DualCodec pre-tokenized

DualCodec (12 Hz) pre-tokenized speech for omni speech–vision MLLM training. Source: MLS English.

Contents (train split)

Total samples ≈ 11,606,000 (audio–transcript pairs)
Total audio ≈ 48,097 hours
WebDataset shards see repo (.tar)
Mean / median duration 14.92s / 14.83s
p90 / max duration 18.83s / 20.00s
Length cap 20s

Counts/hours are computed by sampling shards (per-shard sample count × #shards); duration stats from a scanned subset.

Duration distribution

bucket share
0-5s 0.0%
5-10s 0.0%
10-15s 51.1%
15-20s 48.2%
>20s 0.8%

Format (WebDataset .tar)

Each sample shares a key and consists of {key}.sem.npy, {key}.ac.npy, {key}.txt:

  • .sem.npy — DualCodec semantic codes, int16, shape (T,), vocab 16384.
  • .ac.npy — DualCodec acoustic codes, int16, shape (7, T), vocab 4096 per codebook.
  • .txt — transcript.

Frame rate is 12 Hz, so duration in seconds = T / 12.

Length & padding

Codes are stored at their true variable length (no padding baked in). Samples longer than the training grid are handled at load time. During training, sequences are padded to a fixed 240-frame (20 s) grid by appending the DualCodec encoded-silence column (semantic code 3716, with its matching acoustic column) — i.e. padding is applied as code-level silence, not waveform zeros, so the padded region matches the codec's silence distribution. Samples exceeding the grid (> 240 frames) are skipped rather than cropped to preserve audio–text alignment.

Intended use

ASR (speech→text) and TTS (text→speech) pretraining. Semantic + acoustic codes reconstruct waveforms via the DualCodec decoder.

Downloads last month
74

Collection including KU-AGI/mls_dualcodec_pretokenize