CoolFace
Datasetpublic

YoonSeon/TTS-Multilingual-Test-Set

Overview To assess the multilingual zero-shot voice cloning capabilities of TTS models, we have constructed a test set encompassing 24 languages. This dataset provides both audio samples for voice cloning and corresponding test texts. Specifically, the test set for each language includes: 100 distinct test sentences. Audio samples from two speakers (one male and one female) carefully selected from the Mozilla Common Voice (MCV) dataset, intended for voice cloning. Researchers… See the full description on the dataset page: https://huggingface.co/datasets/YoonSeon/TTS-Multilingual-Test-Set.

sourceHugging Facecc-by-sa-4.0updated 7mo agoView on Hugging Face
0likes76downloads
README.md50 linesDownload Raw Back to root
1---2license: cc-by-sa-4.03task_categories:4- text-to-speech5---6 7## Overview8To assess the multilingual zero-shot voice cloning capabilities of TTS models, we have constructed a test set encompassing 24 languages. This dataset provides both audio samples for voice cloning and corresponding test texts.9Specifically, the test set for each language includes:10100 distinct test sentences.11 12Audio samples from two speakers (one male and one female) carefully selected from the Mozilla Common Voice (MCV) dataset, intended for voice cloning.13 14Researchers can clone the target voices using the provided audio samples and then synthesize the test texts. The resulting synthetic audio can then be evaluated for metrics such as Word Error Rate (WER) and speaker similarity(SIM), eg. [seed-tts-eval](https://github.com/BytedanceSpeech/seed-tts-eval).15 16## 24 Languages17Chinese, English, Cantonese, Japanese, Korean, Arabic, Spanish, Turkish, Indonesian, Portuguese, French, Italian, Dutch, Vietnamese, German, Russian, Ukrainian, Thai, Polish, Romanian, Greek, Czech, Finnish, Hindi.18 19## Data Format20The dataset is organized as follows:21```22├── speaker/...23│       Contains two audio files for each language (corresponding to male and female speakers).24│       Transcriptions for these audio files are also provided in prompt_text.txt.25└── text/...26        Contains a test text file for each language.27        Each line in the file follows the format: cloning_audio_filename|text_to_be_synthesized28        Example (Korean): korean_female|내 나이 아홉살 처음 알게 된 사실이 잇었다. 생일 초를 끄기 전에는 소원을 빌어야 한다는 것.29        (Here, korean_female refers to the corresponding Korean female speaker audio filename in the speaker/ directory, used for voice cloning.)30```31 32## Future Plans33We plan to expand this dataset in the future by adding more languages. Our goal is to establish it as a standard benchmark for evaluating and comparing multilingual TTS models.34 35Paper: https://huggingface.co/papers/2505.0791636Project page: https://minimax-ai.github.io/tts_tech_report37 38## Citation39 40```41@misc{minimax2025minimaxspeechintrinsiczeroshottexttospeech,42      title={MiniMax-Speech: Intrinsic Zero-Shot Text-to-Speech with a Learnable Speaker Encoder}, 43      author={Bowen Zhang, Congchao Guo, Geng Yang, Hang Yu, Haozhe Zhang, Heidi Lei, Jialong Mai, Junjie Yan, Kaiyue Yang, Mingqi Yang, Peikai Huang, Ruiyang Jin, Sitan Jiang, Weihua Cheng, Yawei Li, Yichen Xiao, Yiying Zhou, Yongmao Zhang, Yuan Lu, Yucen He},44      year={2025},45      eprint={2505.07916},46      archivePrefix={arXiv},47      primaryClass={eess.AS},48      url={https://arxiv.org/abs/2505.07916}, 49}50```