Datasets:
Formats:
parquet
Size:
10K - 100K
Update README.md
Browse files
README.md
CHANGED
@@ -37,4 +37,88 @@ configs:
|
|
37 |
data_files:
|
38 |
- split: train
|
39 |
path: tamil/train-*
|
|
|
|
|
|
|
|
|
40 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
data_files:
|
38 |
- split: train
|
39 |
path: tamil/train-*
|
40 |
+
language:
|
41 |
+
- ta
|
42 |
+
- hi
|
43 |
+
- te
|
44 |
---
|
45 |
+
|
46 |
+
# AI4B-IndicVoices-Curated-v0 🗣️
|
47 |
+
|
48 |
+
A high-quality curated subset of IndicVoices-ST dataset, processed and filtered for Text-to-Speech (TTS) applications. This dataset focuses on clean, well-aligned speech data with high-quality transcriptions.
|
49 |
+
|
50 |
+
## Currently Available Languages
|
51 |
+
- Tamil (80 hours)
|
52 |
+
|
53 |
+
*More languages (Hindi and Telugu) will be added soon!*
|
54 |
+
|
55 |
+
## Dataset Details
|
56 |
+
|
57 |
+
### Tamil Dataset
|
58 |
+
- **Size**: ~80 hours
|
59 |
+
- **Source**: Curated from [IndicVoices-ST](https://huggingface.co/datasets/ai4bharat/IndicVoices-ST)
|
60 |
+
- **Filtering Criteria**:
|
61 |
+
- Alignment score > 0.9
|
62 |
+
- Mining score > 0.5
|
63 |
+
- Duration between 1-120 seconds
|
64 |
+
- Clear speech without background noise
|
65 |
+
- Well-aligned transcriptions
|
66 |
+
|
67 |
+
### Dataset Structure
|
68 |
+
```python
|
69 |
+
{
|
70 |
+
'chunked_audio_filepath': dict, # Actual Audio of type datasets.Audio
|
71 |
+
'pred_text': str, # Predicted Tamil text (has no use to TTS)
|
72 |
+
'text': str, # Ground truth Tamil text
|
73 |
+
'audio_filepath': str, # Path to audio file
|
74 |
+
'duration': float, # Duration in seconds
|
75 |
+
'alignment_score': float,
|
76 |
+
'en_mining_score': float
|
77 |
+
}
|
78 |
+
```
|
79 |
+
|
80 |
+
## Use Cases
|
81 |
+
- Training Text-to-Speech (TTS) models
|
82 |
+
- Speech research for Indic language
|
83 |
+
- Prosody and pronunciation studies
|
84 |
+
- Benchmarking speech synthesis systems
|
85 |
+
|
86 |
+
## Citation
|
87 |
+
If you use this dataset, please cite both this repository and the original IndicVoices-ST dataset:
|
88 |
+
|
89 |
+
```bibtex
|
90 |
+
@article{jain2024bhasaanuvaad,
|
91 |
+
title = {BhasaAnuvaad: A Speech Translation Dataset for 14 Indian Languages},
|
92 |
+
author = {Sparsh Jain and Ashwin Sankar and Devilal Choudhary and Dhairya Suman and Nikhil Narasimhan and Mohammed Safi Ur Rahman Khan and Anoop Kunchukuttan and Mitesh M Khapra and Raj Dabre},
|
93 |
+
year = {2024},
|
94 |
+
journal = {arXiv preprint arXiv: 2411.04699}
|
95 |
+
}
|
96 |
+
```
|
97 |
+
|
98 |
+
```bibtex
|
99 |
+
@misc{AI4B-IndicVoices-Curated-2024,
|
100 |
+
title={AI4B-IndicVoices-Curated: High-Quality Speech Dataset for Indian Languages},
|
101 |
+
author={Abhinand},
|
102 |
+
year={2024},
|
103 |
+
publisher={HuggingFace},
|
104 |
+
howpublished={\url{https://huggingface.co/datasets/abhinand/AI4B-IndicVoices-Curated-v0}}
|
105 |
+
}
|
106 |
+
```
|
107 |
+
|
108 |
+
## License
|
109 |
+
This dataset follows the same license as the original IndicVoices-ST dataset.
|
110 |
+
|
111 |
+
## Acknowledgments
|
112 |
+
- [AI4Bharat](https://ai4bharat.org/) for the original IndicVoices-ST dataset
|
113 |
+
- All contributors to the original dataset collection
|
114 |
+
|
115 |
+
## Updates
|
116 |
+
- January 2025: Initial release with Tamil dataset (80 hours)
|
117 |
+
- Coming soon: Hindi and Telugu datasets
|
118 |
+
|
119 |
+
## Contact
|
120 |
+
For questions or issues, please open an Issue or contact the maintainer - [abhinand5](https://huggingface.co/abhinand).
|
121 |
+
|
122 |
+
---
|
123 |
+
|
124 |
+
*Note: This is an ongoing project, and we're continuously working to add more languages and improve data quality.*
|