Wataru commited on
Commit
c7ddfbd
·
verified ·
1 Parent(s): eec1fcf

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. README.md +116 -0
  2. dutch/completed_dev.txt +0 -0
  3. dutch/completed_test.txt +0 -0
  4. dutch/completed_train.txt +0 -0
  5. english/00000-of-00128/completed.txt +0 -0
  6. english/00002-of-00128/completed.txt +0 -0
  7. english/00003-of-00128/completed.txt +0 -0
  8. english/00004-of-00128/completed.txt +0 -0
  9. english/00005-of-00128/completed.txt +0 -0
  10. english/00010-of-00128/completed.txt +0 -0
  11. english/00011-of-00128/completed.txt +0 -0
  12. english/00022-of-00128/completed.txt +0 -0
  13. english/00024-of-00128/completed.txt +0 -0
  14. english/00028-of-00128/completed.txt +0 -0
  15. english/00029-of-00128/completed.txt +0 -0
  16. english/00031-of-00128/completed.txt +0 -0
  17. english/00033-of-00128/completed.txt +0 -0
  18. english/00034-of-00128/completed.txt +0 -0
  19. english/00035-of-00128/completed.txt +0 -0
  20. english/00043-of-00128/completed.txt +0 -0
  21. english/00054-of-00128/completed.txt +0 -0
  22. english/00065-of-00128/completed.txt +0 -0
  23. english/00070-of-00128/completed.txt +0 -0
  24. english/00073-of-00128/completed.txt +0 -0
  25. english/00082-of-00128/completed.txt +0 -0
  26. english/00085-of-00128/completed.txt +0 -0
  27. english/00100-of-00128/completed.txt +0 -0
  28. english/00101-of-00128/completed.txt +0 -0
  29. english/00106-of-00128/completed.txt +0 -0
  30. english/00108-of-00128/completed.txt +0 -0
  31. english/00120-of-00128/completed.txt +0 -0
  32. english/00121-of-00128/completed.txt +0 -0
  33. english/00122-of-00128/completed.txt +0 -0
  34. english/00123-of-00128/completed.txt +0 -0
  35. english/00124-of-00128/completed.txt +0 -0
  36. english/00127-of-00128/completed.txt +0 -0
  37. english/completed_dev.txt +0 -0
  38. english/completed_test.txt +0 -0
  39. french/completed_dev.txt +0 -0
  40. french/completed_test.txt +0 -0
  41. french/completed_train.txt +0 -0
  42. german/completed_dev.txt +0 -0
  43. german/completed_test.txt +0 -0
  44. german/completed_train.txt +0 -0
  45. italian/completed_dev.txt +0 -0
  46. italian/completed_test.txt +0 -0
  47. italian/completed_train.txt +0 -0
  48. polish/completed_dev.txt +0 -0
  49. polish/completed_test.txt +0 -0
  50. polish/completed_train.txt +0 -0
README.md ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # MLS-Sidon
2
+
3
+ ## Overview
4
+ This dataset is a **cleansed version of Multilingual LibriSpeech (MLS)** with **Sidon** speech restoration mode for **Speech Synthesis** and **Spoken Language Modeling**.
5
+
6
+ The dataset is provided in **[WebDataset](https://github.com/webdataset/webdataset) format** for efficient large-scale training.
7
+
8
+ - **Source**: [Multilingual LibriSpeech](https://www.openslr.org/94/)
9
+ - **Languages**: English, German, French, Spanish, Italian, Portuguese, Polish, Dutch
10
+ - **Format**: WebDataset (`.tar` shards)
11
+ - **License**: [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
12
+
13
+ ---
14
+
15
+ ## Dataset Structure
16
+ Each sample in the dataset contains:
17
+
18
+ - **`flac`** — audio file (48 kHz, single channel)
19
+ - **`meta.json`** *(optional)* — metadata including language, speaker ID, and original MLS reference
20
+
21
+ Example (inside a `.tar` shard):
22
+ ```
23
+
24
+ 000001.flac
25
+ 000001.meta.json
26
+ 000002.flac
27
+ 000002.meta.json
28
+ ...
29
+
30
+ ````
31
+
32
+ ---
33
+
34
+ ## How to Use
35
+
36
+ ### With 🤗 Datasets
37
+ You can load the WebDataset directly with Hugging Face’s `datasets` library:
38
+
39
+ ```python
40
+ from datasets import load_dataset
41
+
42
+ ds = load_dataset(
43
+ "webdataset",
44
+ data_files="https://huggingface.co/datasets/<username>/<repo>/resolve/main/{lang}_shard-{000000..000099}.tar",
45
+ split="train",
46
+ streaming=True
47
+ )
48
+
49
+ for sample in ds:
50
+ audio = sample["flac"]
51
+ text = sample["txt"]
52
+ print(audio, text)
53
+ ````
54
+
55
+ Replace `{lang}` with the language (e.g., `english`, `german`).
56
+
57
+ ---
58
+
59
+ ### With WebDataset (PyTorch)
60
+
61
+ ```python
62
+ import webdataset as wds
63
+
64
+ urls = "https://huggingface.co/datasets/<username>/<repo>/resolve/main/english_shard-{000000..000099}.tar"
65
+
66
+ dataset = (
67
+ wds.WebDataset(urls)
68
+ .decode()
69
+ .to_tuple("flac", "txt")
70
+ )
71
+
72
+ for audio, text in dataset:
73
+ ...
74
+ ```
75
+
76
+ ---
77
+
78
+ ## Citation
79
+
80
+ If you use this dataset, please cite Sidon and the original MLS paper:
81
+
82
+ ```
83
+ @misc{nakata2025sidonfastrobustopensource,
84
+ title={Sidon: Fast and Robust Open-Source Multilingual Speech Restoration for Large-scale Dataset Cleansing},
85
+ author={Wataru Nakata and Yuki Saito and Yota Ueda and Hiroshi Saruwatari},
86
+ year={2025},
87
+ eprint={2509.17052},
88
+ archivePrefix={arXiv},
89
+ primaryClass={cs.SD},
90
+ url={https://arxiv.org/abs/2509.17052},
91
+ }
92
+ ```
93
+
94
+
95
+ ```
96
+ @inproceedings{pratap2020mls,
97
+ title = {MLS: A Large-Scale Multilingual Dataset for Speech Research},
98
+ author = {Pratap, Vineel and Xu, Qiantong and Sriram, Anuroop and others},
99
+ booktitle = {Interspeech},
100
+ year = {2020}
101
+ }
102
+ ```
103
+
104
+
105
+ ---
106
+
107
+ ## License
108
+
109
+ This dataset is released under [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/).
110
+
111
+ ---
112
+
113
+ ## Acknowledgements
114
+
115
+ * **Original data**: [Multilingual LibriSpeech (MLS)](https://www.openslr.org/94/)
116
+
dutch/completed_dev.txt ADDED
File without changes
dutch/completed_test.txt ADDED
File without changes
dutch/completed_train.txt ADDED
File without changes
english/00000-of-00128/completed.txt ADDED
File without changes
english/00002-of-00128/completed.txt ADDED
File without changes
english/00003-of-00128/completed.txt ADDED
File without changes
english/00004-of-00128/completed.txt ADDED
File without changes
english/00005-of-00128/completed.txt ADDED
File without changes
english/00010-of-00128/completed.txt ADDED
File without changes
english/00011-of-00128/completed.txt ADDED
File without changes
english/00022-of-00128/completed.txt ADDED
File without changes
english/00024-of-00128/completed.txt ADDED
File without changes
english/00028-of-00128/completed.txt ADDED
File without changes
english/00029-of-00128/completed.txt ADDED
File without changes
english/00031-of-00128/completed.txt ADDED
File without changes
english/00033-of-00128/completed.txt ADDED
File without changes
english/00034-of-00128/completed.txt ADDED
File without changes
english/00035-of-00128/completed.txt ADDED
File without changes
english/00043-of-00128/completed.txt ADDED
File without changes
english/00054-of-00128/completed.txt ADDED
File without changes
english/00065-of-00128/completed.txt ADDED
File without changes
english/00070-of-00128/completed.txt ADDED
File without changes
english/00073-of-00128/completed.txt ADDED
File without changes
english/00082-of-00128/completed.txt ADDED
File without changes
english/00085-of-00128/completed.txt ADDED
File without changes
english/00100-of-00128/completed.txt ADDED
File without changes
english/00101-of-00128/completed.txt ADDED
File without changes
english/00106-of-00128/completed.txt ADDED
File without changes
english/00108-of-00128/completed.txt ADDED
File without changes
english/00120-of-00128/completed.txt ADDED
File without changes
english/00121-of-00128/completed.txt ADDED
File without changes
english/00122-of-00128/completed.txt ADDED
File without changes
english/00123-of-00128/completed.txt ADDED
File without changes
english/00124-of-00128/completed.txt ADDED
File without changes
english/00127-of-00128/completed.txt ADDED
File without changes
english/completed_dev.txt ADDED
File without changes
english/completed_test.txt ADDED
File without changes
french/completed_dev.txt ADDED
File without changes
french/completed_test.txt ADDED
File without changes
french/completed_train.txt ADDED
File without changes
german/completed_dev.txt ADDED
File without changes
german/completed_test.txt ADDED
File without changes
german/completed_train.txt ADDED
File without changes
italian/completed_dev.txt ADDED
File without changes
italian/completed_test.txt ADDED
File without changes
italian/completed_train.txt ADDED
File without changes
polish/completed_dev.txt ADDED
File without changes
polish/completed_test.txt ADDED
File without changes
polish/completed_train.txt ADDED
File without changes