Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -104,19 +104,20 @@ Arabic Speech Corpus, and (4) synthesized speech using commercial TTS systems. T
|
|
104 |
Usage Example
|
105 |
|
106 |
```python
|
107 |
-
df = load_dataset(
|
108 |
-
print(df)
|
109 |
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
})
|
115 |
-
test: Dataset({
|
116 |
-
features: ['audio', 'transcription', 'speaker_id'],
|
117 |
-
num_rows: 100
|
118 |
-
})
|
119 |
})
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
```
|
121 |
|
122 |
|
@@ -133,4 +134,18 @@ Data Statistics
|
|
133 |
| Synthetic | ArVoice Part 4 | 2×M, 2×F | - | 73.5 | Tashkeela, Khaleej, ASC |
|
134 |
|
135 |
|
136 |
-
License: [https://creativecommons.org/licenses/by/4.0/](https://creativecommons.org/licenses/by/4.0/)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
Usage Example
|
105 |
|
106 |
```python
|
107 |
+
df = load_dataset("MBZUAI/ArVoice", "Human_3") #data_dir options: Human_3, Synthetic,
|
108 |
+
print(df)
|
109 |
|
110 |
+
DatasetDict({
|
111 |
+
train: Dataset({
|
112 |
+
features: ['original_wav', 'normalized_wav', 'speaker_id', 'transcription'],
|
113 |
+
num_rows: 907
|
|
|
|
|
|
|
|
|
|
|
114 |
})
|
115 |
+
test: Dataset({
|
116 |
+
features: ['original_wav', 'normalized_wav', 'speaker_id', 'transcription'],
|
117 |
+
num_rows: 100
|
118 |
+
})
|
119 |
+
})
|
120 |
+
|
121 |
```
|
122 |
|
123 |
|
|
|
134 |
| Synthetic | ArVoice Part 4 | 2×M, 2×F | - | 73.5 | Tashkeela, Khaleej, ASC |
|
135 |
|
136 |
|
137 |
+
License: [https://creativecommons.org/licenses/by/4.0/](https://creativecommons.org/licenses/by/4.0/)
|
138 |
+
|
139 |
+
### Citation
|
140 |
+
|
141 |
+
```
|
142 |
+
@misc{toyin2025arvoicemultispeakerdatasetarabic,
|
143 |
+
title={ArVoice: A Multi-Speaker Dataset for Arabic Speech Synthesis},
|
144 |
+
author={Hawau Olamide Toyin and Rufael Marew and Humaid Alblooshi and Samar M. Magdy and Hanan Aldarmaki},
|
145 |
+
year={2025},
|
146 |
+
eprint={2505.20506},
|
147 |
+
archivePrefix={arXiv},
|
148 |
+
primaryClass={cs.CL},
|
149 |
+
url={https://arxiv.org/abs/2505.20506},
|
150 |
+
}
|
151 |
+
```
|