Datasets:
File size: 4,126 Bytes
039e68c 1470116 039e68c 1470116 039e68c 1470116 b785a7c 1470116 039e68c 1470116 039e68c 6125aa9 039e68c b79b1ac 039e68c b79b1ac a809be5 b79b1ac ede5b0c 039e68c 034c552 039e68c f5f0a18 039e68c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | ---
license: cc-by-4.0
language:
- ta
task_categories:
- automatic-speech-recognition
tags:
- audio
- text
- speech
- tamil
- openslr
pretty_name: OpenSLR-65 Tamil Speech Dataset
size_categories:
- 1K<n<10K
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
dataset_info:
features:
- name: file_id
dtype: string
- name: audio
dtype: audio
- name: transcription
dtype: string
- name: duration
dtype: float32
- name: gender
dtype: string
splits:
- name: train
num_bytes: 2449492064.0
num_examples: 4291
download_size: 1787306633
dataset_size: 2449492064.0
---
# OpenSLR-65 – Tamil Transcribed Speech
**Source:** [https://www.openslr.org/65/](https://www.openslr.org/65/)
## Dataset Description
- **Homepage:** [OpenSLR SLR65](https://www.openslr.org/65/)
This dataset contains transcribed high-quality audio of Tamil sentences recorded
by volunteers. It is part of the [OpenSLR](https://www.openslr.org) collection of
free speech resources for low-resource languages.
The data was collected via the
[Appen](https://appen.com) (formerly Figure Eight / CrowdFlower) crowdsourcing
platform and is intended for use in training automatic speech recognition (ASR)
and text-to-speech (TTS) systems.
### Data Collection
Volunteers were asked to read Tamil sentences displayed on their screen and
record themselves. Quality control was performed to ensure accurate transcriptions
and clean audio.
### Contents
| Field | Description |
|-------|-------------|
| `file_id` | Anonymized identifier for the audio file |
| `transcription` | Tamil text transcription of the utterance |
| `audio` | WAV audio file (mono) |
| `duration` | Duration of the audio in seconds |
| `gender` | Speaker gender (`male` / `female`) |
## Corpus statistics
| gender | samples | duration (h) |
|--------|---------|------------|
| female | 2 335 | 4.01 |
| male | 1 956 | 3.07 |
| **total** | **4 291** | **7.08** |
## Usage
### Load the Dataset
```python
from datasets import load_dataset
# Load full dataset
dataset = load_dataset("deepdml/openslr65-tamil")
train_data = dataset["train"]
# train_data = load_dataset("deepdml/openslr65-tamil", split="train")
```
### Inspect a Sample
```python
sample = train_data[0]
print(sample)
# {
# 'file_id': 'tag_09162_01279273055',
# 'audio': {'array': array([...], dtype=float32)},
# 'transcription': 'அவர்களின் படங்களின் டீஸருக்கு கிடைக்கும் வரவேற்பு அபிரிதமாக உள்ளது',
# 'duration': 5.12,
# 'gender': male,
# }
# Play audio (in a notebook)
import IPython.display as ipd
ipd.Audio(sample["audio"]["array"], rate=sample["audio"]["sampling_rate"])
```
### Filter by Duration
```python
# Keep only utterances between 2 and 15 seconds
filtered = train_data.filter(lambda x: 2.0 <= x["duration"] <= 15.0)
```
## License
[Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/)
## Citation
If you use this dataset, please cite:
```
@inproceedings{he-etal-2020-open,
title = {{Open-source Multi-speaker Speech Corpora for Building Gujarati, Kannada, Malayalam, Marathi, Tamil and Telugu Speech Synthesis Systems}},
author = {He, Fei and Chu, Shan-Hui Cathy and Kjartansson, Oddur and Rivera, Clara and Katanova, Anna and Gutkin, Alexander and Demirsahin, Isin and Johny, Cibu and Jansche, Martin and Sarin, Supheakmungkol and Pipatsrisawat, Knot},
booktitle = {Proceedings of The 12th Language Resources and Evaluation Conference (LREC)},
month = may,
year = {2020},
address = {Marseille, France},
publisher = {European Language Resources Association (ELRA)},
pages = {6494--6503},
url = {https://www.aclweb.org/anthology/2020.lrec-1.800},
ISBN = "{979-10-95546-34-4},
}
```
## Additional Information
- **Homepage:** https://www.openslr.org/65/
- **Repository:** https://openslr.org/resources/65/
- **Paper:** N/A
- **Point of Contact:** OpenSLR maintainers
|