MahtaFetrat commited on
Commit
687ec4c
·
verified ·
1 Parent(s): 7ea3426

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +122 -0
README.md ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ManaTTS-Persian-Speech-Dataset
2
+
3
+ **ManaTTS** is the largest publicly available single-speaker Persian corpus, comprising over **114 hours** of high-quality audio (sampled at **44.1 kHz**). Released under the permissive **CC-0 license**, this dataset is freely usable for both educational and commercial purposes.
4
+
5
+ Collected from **[Nasl-e-Mana](https://naslemana.com/)** magazine, the dataset covers a diverse range of topics, making it ideal for training robust **text-to-speech (TTS) models**. The release includes a **fully transparent, open-source pipeline** for data collection and processing, featuring tools for **audio segmentation** and **forced alignment**. For the full codebase, visit the **[ManaTTS GitHub repository](https://github.com/MahtaFetrat/ManaTTS-Persian-Speech-Dataset)**.
6
+
7
+ ---
8
+
9
+ ### Dataset Columns
10
+
11
+ | Column Name | Description |
12
+ |------------------|-------------|
13
+ | **file_name** | Unique identifier for the audio file. |
14
+ | **transcript** | Ground-truth text transcription of the audio chunk. |
15
+ | **duration** | Duration of the audio chunk (in seconds). |
16
+ | **match_quality** | Quality of alignment between the approximate transcript and ground truth (`HIGH` or `MIDDLE`). Reflects confidence in transcript accuracy (see [paper](https://aclanthology.org/2025.naacl-long.464/) for details). |
17
+ | **hypothesis** | Approximate transcript used to search for the ground-truth text. |
18
+ | **CER** | Character Error Rate between the hypothesis and accepted transcript. |
19
+ | **search_type** | Indicates whether the transcript was matched continuously in the source text (`type 1`) or with gaps (`type 2`). |
20
+ | **ASRs** | Ordered list of ASRs used until a match was found. |
21
+ | **audio** | Audio file as a numerical array. |
22
+ | **sample_rate** | Sampling rate of the audio file (44.1 kHz). |
23
+
24
+ ---
25
+
26
+ ## Usage
27
+
28
+ ### Python (Hugging Face)
29
+ First install the required package:
30
+ ```bash
31
+ pip install datasets
32
+ ```
33
+
34
+ Then load the data:
35
+ ```python
36
+ from datasets import load_dataset
37
+
38
+ # Load a specific partition (e.g., part 001)
39
+ dataset = load_dataset("MahtaFetrat/Mana-TTS",
40
+ data_files="dataset/dataset_part_001.parquet",
41
+ split="train")
42
+
43
+ # Inspect the data
44
+ print(dataset)
45
+ print(dataset[0]) # View first sample
46
+ ```
47
+
48
+ ### Command Line (wget)
49
+ Download individual files directly:
50
+ ```bash
51
+ # Download single file (e.g., part 001)
52
+ wget https://huggingface.co/datasets/MahtaFetrat/Mana-TTS/resolve/main/dataset/dataset_part_001.parquet
53
+ ```
54
+
55
+ ---
56
+
57
+ ## Trained TTS Model
58
+
59
+ [![Hugging Face](https://img.shields.io/badge/Hugging%20Face-Model-orange)](https://huggingface.co/MahtaFetrat/Persian-Tacotron2-on-ManaTTS)
60
+
61
+ A **Tacotron2-based TTS model** trained on ManaTTS is available on Hugging Face. For inference and weights, visit the [model repository](https://huggingface.co/MahtaFetrat/Persian-Tacotron2-on-ManaTTS).
62
+
63
+ ---
64
+
65
+ ## Contributing
66
+
67
+ Contributions to this project are welcome! If you encounter any issues or have suggestions for improvements, please open an issue or submit a pull request.
68
+
69
+ ---
70
+
71
+ ## License
72
+
73
+ This dataset is released under the **[CC-0 1.0 license](https://creativecommons.org/publicdomain/zero/1.0/)**.
74
+
75
+ ---
76
+
77
+ ## Ethical Use Notice
78
+
79
+ The ManaTTS dataset is intended **exclusively for ethical research and development**. Misuse—including voice impersonation, identity theft, or fraudulent activities—is strictly prohibited. By using this dataset, you agree to uphold **integrity and privacy standards**. Violations may result in legal consequences.
80
+
81
+ For questions, contact the maintainers.
82
+
83
+ ---
84
+
85
+ ## Acknowledgments
86
+
87
+ We extend our deepest gratitude to **[Nasl-e-Mana](https://naslemana.com/)**, the monthly magazine of Iran’s blind community, for their generosity in releasing this data under **CC-0**. Their commitment to open collaboration has been pivotal in advancing Persian speech synthesis.
88
+
89
+ ---
90
+
91
+ ## Community Impact
92
+
93
+ We encourage researchers and developers to leverage this resource for **assistive technologies**, such as screen readers, to benefit the Iranian blind community. Open-source collaboration is key to driving accessibility innovation.
94
+
95
+ ---
96
+
97
+ ## Citation
98
+
99
+ If you use ManaTTS in your work, cite our paper:
100
+
101
+ ```bibtex
102
+ @inproceedings{qharabagh-etal-2025-manatts,
103
+ title = "{M}ana{TTS} {P}ersian: A Recipe for Creating {TTS} Datasets for Lower-Resource Languages",
104
+ author = "Qharabagh, Mahta Fetrat and Dehghanian, Zahra and Rabiee, Hamid R.",
105
+ booktitle = "Proceedings of the 2025 Conference of the North American Chapter of the Association for Computational Linguistics",
106
+ month = apr,
107
+ year = "2025",
108
+ address = "Albuquerque, New Mexico",
109
+ publisher = "Association for Computational Linguistics",
110
+ pages = "9177--9206",
111
+ url = "https://aclanthology.org/2025.naacl-long.464/",
112
+ }
113
+ ```
114
+
115
+ ---
116
+
117
+
118
+ ## Aditional Links
119
+ - [ManaTTS Github Repository](https://github.com/MahtaFetrat/ManaTTS-Persian-Speech-Dataset/tree/main)
120
+ - [ManaTTS Paper](https://aclanthology.org/2025.naacl-long.464/)
121
+ - [Nasl-e-Mana Magazine](https://naslemana.com/)
122
+ - Tacotron2 Trained on ManaTTS [Huggingface](https://huggingface.co/MahtaFetrat/Persian-Tacotron2-on-ManaTTS) | [Github](https://github.com/MahtaFetrat/ManaTTS-Persian-Tacotron2-Model)