Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
Cannot load the dataset split (in streaming mode) to extract the first rows.
Error code:   StreamingRowsError
Exception:    ReadError
Message:      unexpected end of data
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/utils.py", line 147, in get_rows_or_raise
                  return get_rows(
                      dataset=dataset,
                  ...<4 lines>...
                      column_names=column_names,
                  )
                File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
                  return func(*args, **kwargs)
                File "/src/services/worker/src/worker/utils.py", line 127, in get_rows
                  rows_plus_one = list(itertools.islice(safe_iter(ds, dataset=dataset), rows_max_number + 1))
                File "/src/services/worker/src/worker/utils.py", line 478, in safe_iter
                  yield from ds.decode(False) if ds.features else ds
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2818, in __iter__
                  for key, example in ex_iterable:
                                      ^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2365, in __iter__
                  for key, example in self.ex_iterable:
                                      ^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 315, in __iter__
                  for key_example in islice(self.generate_examples_fn(**gen_kwargs), shard_example_idx_start, None):
                                     ~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 130, in _generate_examples
                  for example_idx, example in enumerate(self._get_pipeline_from_tar(tar_path, tar_iterator)):
                                              ~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 46, in _get_pipeline_from_tar
                  current_example[field_name] = f.read()
                                                ~~~~~~^^
                File "/usr/local/lib/python3.14/tarfile.py", line 707, in read
                  raise ReadError("unexpected end of data")
              tarfile.ReadError: unexpected end of data

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.

ChildTalk: A Multi-Dialect Chinese Child Speech Corpus with Full-Length Child–Caregiver Conversations for Speech Recognition

GitHub Paper

πŸ“– Overview

ChildTalk is a large-scale, publicly available multi-dialect Chinese child speech dialogue dataset. This dataset solves key problems found in existing Chinese child ASR corpora β€” mainly their small size, lack of natural conversations, limited dialectal coverage, and missing full-length dialogue recordings. It provides a solid foundation for advancing research in child speech recognition, dialect robustness, dialogue-level modeling, and other related fields. The dataset is released under a non-commercial license, meaning it is available for academic and non-commercial use.

✨ Key Features

  • Extensive Dialect Coverage: Features systematic coverage of standard Mandarin, eight Mandarin dialect subgroups (such as Southwestern, Jiao-Liao, and Zhongyuan), and two additional dialects (Southern Min and Jin).
  • Conversational Context: Retains full-length sessions that typically last several minutes, making it highly suitable for dialogue-level modeling and context-aware ASR. Experiments show that extending the prompt to previous turns (e.g., $C=3$) provides consistent improvements in models like Whisper and Qwen3-ASR.
  • Rich Annotation: Transcriptions faithfully capture child-specific speech patterns, disfluencies, non-speech events (laughter, coughing), and overlapping speech.

πŸ“₯ Dataset Access

ChildTalk dataset is freely available for non-commercial academic research purposes.

Download

Please download the dataset from ChildTalk.

After that, merge the compressed files and extract them:

cat childtalk.tar.gz.part-* > childtalk.tar.gz
tar -zvxf childtalk.tar.gz

The directory structure after extraction is as follows:

childtalk/
β”œβ”€β”€ information/
β”‚   β”œβ”€β”€ long/
β”‚   β”‚   β”œβ”€β”€ all/
β”‚   β”‚   β”œβ”€β”€ train/
β”‚   β”‚   └── ...
β”‚   β”œβ”€β”€ short/
β”‚   β”‚   β”œβ”€β”€ all/
β”‚   β”‚   β”‚   β”œβ”€β”€ wav.scp
β”‚   β”‚   β”‚   └── text
β”‚   β”‚   β”œβ”€β”€ train/
β”‚   β”‚   └── ...
β”‚   β”œβ”€β”€ dialogue_info.csv
β”‚   └── speaker_info.csv
β”œβ”€β”€ long/
β”‚   β”œβ”€β”€ Beijing/
β”‚   β”‚   β”œβ”€β”€ U1124_U2124.wav
β”‚   β”‚   └── ...
β”‚   β”œβ”€β”€ Ji-Lu/
β”‚   └── ...
└── short/
    β”œβ”€β”€ Beijing/
    β”‚   β”œβ”€β”€ U1124_U2124_S1_child_7_F_Beijing_light_CHENGDE_Android.wav
    β”‚   └── ...
    β”œβ”€β”€ Ji-Lu/
    └── ...
  • The format of the wav.scp file is .
  • The format of the text file is .

βš–οΈ Ethical Considerations & License

All recordings were collected with prior informed consent from parents or legal guardians, and all data is anonymized. Access to ChildTalk is strictly restricted to non-commercial research use. Users must agree to the data use agreement, which strictly prohibits attempting to infer real-world identities or redistributing the raw audio outside of their research group.

πŸ“ Citation

If you find this corpus useful in your research, please cite our paper:

@inproceedings{zhou-etal-2026-childtalk,
    title = "{C}hild{T}alk: A Multi-Dialect {C}hinese Child Speech Corpus with Full-Length Child{--}Caregiver Conversations for Speech Recognition",
    author = "Zhou, Jiaming  and
      Guo, Yujie  and
      Zhao, Shiwan  and
      Lu, Yao  and
      Wang, Jianye  and
      Sun, Haoqin  and
      Wang, Hui  and
      Qin, Yong",
    editor = "Liakata, Maria  and
      Moreira, Viviane P.  and
      Zhang, Jiajun  and
      Jurgens, David",
    booktitle = "Findings of the {A}ssociation for {C}omputational {L}inguistics: {ACL} 2026",
    month = jul,
    year = "2026",
    address = "San Diego, California, United States",
    publisher = "Association for Computational Linguistics",
    url = "https://aclanthology.org/2026.findings-acl.251/",
    pages = "5103--5116",
    ISBN = "979-8-89176-395-1"
}
Downloads last month
212

Paper for yujie-ovo/ChildTalk