mshojaei77
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -19,3 +19,82 @@ configs:
|
|
19 |
- split: train
|
20 |
path: data/train-*
|
21 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
- split: train
|
20 |
path: data/train-*
|
21 |
---
|
22 |
+
|
23 |
+
# Merged Persian TTS Dataset
|
24 |
+
|
25 |
+
## Overview
|
26 |
+
|
27 |
+
This dataset is a comprehensive collection of Persian speech data, merged from several high-quality sources to facilitate Text-to-Speech (TTS) research and development for the Persian language. It combines audio recordings with their corresponding transcriptions, providing a rich resource for training and evaluating Persian TTS systems.
|
28 |
+
|
29 |
+
## Dataset Details
|
30 |
+
|
31 |
+
- **Language**: Persian (Farsi)
|
32 |
+
- **Total Samples**: [Insert total number of samples after merging]
|
33 |
+
- **Audio Format**: WAV (16-bit PCM)
|
34 |
+
- **Sampling Rate**: 16000 Hz
|
35 |
+
- **Columns**:
|
36 |
+
- `audio`: Audio file in WAV format
|
37 |
+
- `sentence`: Corresponding transcription of the audio in Persian text
|
38 |
+
|
39 |
+
## Source Datasets
|
40 |
+
|
41 |
+
This merged dataset combines data from the following sources:
|
42 |
+
|
43 |
+
1. **Persian Common Voice 17.0**
|
44 |
+
- Original Dataset: [Ashegh-Sad-Warrior/Persian_Common_Voice_17_0](https://huggingface.co/datasets/Ashegh-Sad-Warrior/Persian_Common_Voice_17_0)
|
45 |
+
- License: CC0
|
46 |
+
|
47 |
+
2. **Persian Concatenated**
|
48 |
+
- Original Dataset: [koochikoo25/Persian-Concatenated](https://huggingface.co/datasets/koochikoo25/Persian-Concatenated)
|
49 |
+
- License: [Insert license information if available]
|
50 |
+
|
51 |
+
3. **Persian Speech Dataset**
|
52 |
+
- Original Dataset: [SeyedAli/Persian-Speech-Dataset](https://huggingface.co/datasets/SeyedAli/Persian-Speech-Dataset)
|
53 |
+
- License: [Insert license information if available]
|
54 |
+
|
55 |
+
4. **SP_HW5_PersianTTS**
|
56 |
+
- Original Dataset: [mohammadhossein/SP_HW5_PersianTTS](https://huggingface.co/datasets/mohammadhossein/SP_HW5_PersianTTS)
|
57 |
+
- License: [Insert license information if available]
|
58 |
+
|
59 |
+
5. **General Persian Dataset**
|
60 |
+
- Original Dataset: [m522t/general_persian_dataset](https://huggingface.co/datasets/m522t/general_persian_dataset)
|
61 |
+
- License: [Insert license information if available]
|
62 |
+
|
63 |
+
## Preprocessing
|
64 |
+
|
65 |
+
The following preprocessing steps were applied to create this merged dataset:
|
66 |
+
|
67 |
+
1. Audio files were standardized to a 16000 Hz sampling rate.
|
68 |
+
2. Text transcriptions were unified under the column name 'sentence'.
|
69 |
+
3. Only 'audio' and 'sentence' columns were retained from each source dataset.
|
70 |
+
|
71 |
+
## Usage
|
72 |
+
|
73 |
+
This dataset can be easily loaded using the Hugging Face `datasets` library:
|
74 |
+
|
75 |
+
```python
|
76 |
+
from datasets import load_dataset
|
77 |
+
|
78 |
+
dataset = load_dataset("mshojaei77/persian_tts_merged")
|
79 |
+
```
|
80 |
+
|
81 |
+
## Applications
|
82 |
+
|
83 |
+
This dataset is suitable for various speech-related tasks in Persian, including but not limited to:
|
84 |
+
|
85 |
+
- Text-to-Speech (TTS) system development
|
86 |
+
- Speech recognition model training
|
87 |
+
- Voice activity detection
|
88 |
+
- Linguistic analysis of Persian speech patterns
|
89 |
+
|
90 |
+
## Ethical Considerations
|
91 |
+
|
92 |
+
Users of this dataset should be aware of and respect the following ethical considerations:
|
93 |
+
|
94 |
+
- Privacy: Ensure that any use of this dataset complies with privacy regulations.
|
95 |
+
- Bias: Be aware of potential biases in the dataset, such as accent or dialect representation.
|
96 |
+
- Responsible AI: Use this dataset to develop AI systems that respect and preserve Persian language and culture.
|
97 |
+
|
98 |
+
## Acknowledgements
|
99 |
+
|
100 |
+
We express our gratitude to the creators and contributors of the original datasets, without whom this merged dataset would not have been possible.
|