--- license: cc-by-sa-4.0 language: - en - zh tags: - env-tts - environment-aware-tts - speaker-diarization - text-to-speech - audio - speech-synthesis size_categories: - 100K "records emitted with rows" in MSDWILD/M3SD: conversations with <2 speakers (no candidate for the env source), conversations whose total speech time per speaker can't yield a ≥3 s focal clip + a ≥3 s reference, or clips where `Qwen3-ASR` returned empty text after segmentation. ## Licensing The derived corpus is released under **CC-BY-SA-4.0**, which inherits the most-restrictive licence among the four sources. Note in particular: - **M3SD** is for *academic and non-commercial research* only (Wu et al., 2025). - **MSDWILD** uses the X-LANCE research-only agreement (Liu et al., 2022). - AISHELL-4 (Apache 2.0) and CHiME-6 (CC-BY-SA-4.0) are open. If you redistribute audio extracted from this dataset, you must comply with M3SD's and MSDWILD's non-commercial restriction. ## Citation If you use this corpus, please cite the four source papers: ```bibtex @article{wu2025m3sd, title={M3SD: Multi-modal, Multi-scenario and Multi-language Speaker Diarization Dataset}, author={Wu, Shilong and others}, journal={arXiv preprint arXiv:2506.14427}, year={2025} } @inproceedings{fu2021aishell4, title={AISHELL-4: An Open Source Dataset for Speech Enhancement, Separation, Recognition and Speaker Diarization in Conference Scenario}, author={Fu, Yihui and others}, booktitle={Interspeech}, year={2021} } @inproceedings{liu2022msdwild, title={MSDWILD: Multi-modal Speaker Diarization Dataset in the Wild}, author={Liu, Tao and others}, booktitle={Interspeech}, year={2022} } @inproceedings{watanabe2020chime6, title={CHiME-6 Challenge: Tackling Multispeaker Speech Recognition for Unsegmented Recordings}, author={Watanabe, Shinji and others}, booktitle={CHiME Workshop}, year={2020} } ``` ASR re-labelling was performed with [Qwen3-ASR-1.7B](https://huggingface.co/Qwen/Qwen3-ASR-1.7B). ## Loading ```python from datasets import load_dataset ds = load_dataset("ChristianYang/env-tts-sd-corpus", split="train", streaming=True) row = next(iter(ds)) print(row["text"]) print(row["speech"]["sampling_rate"], len(row["speech"]["array"])) ``` The audio columns are typed as the HF `Audio` feature (16 kHz, mono), so they decode automatically on access. ## Files on disk ``` data/ group_00000/ manifest.json data_000000.parquet data_000001.parquet data_000002.parquet data_000003.parquet group_00001/ ... ``` Each group is one atomic HF commit. Each parquet shard is ≈800 rows; group size is 4 × 800 = 3 200 rows ≈ 250 MB (snappy-compressed, audio columns already FLAC). --- *Source pipeline: (see the linked repository for the streaming download/process/upload code that produced this dataset).*