Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -52,4 +52,89 @@ configs:
|
|
52 |
path: data/validation-*
|
53 |
- split: test
|
54 |
path: data/test-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
path: data/validation-*
|
53 |
- split: test
|
54 |
path: data/test-*
|
55 |
+
task_categories:
|
56 |
+
- automatic-speech-recognition
|
57 |
+
language:
|
58 |
+
- fa
|
59 |
+
tags:
|
60 |
+
- common_voice
|
61 |
+
- common_voice_21_0
|
62 |
+
- asr
|
63 |
+
- automatic_speech_recognition
|
64 |
+
- persian
|
65 |
+
- farsi
|
66 |
+
- persian_language
|
67 |
+
pretty_name: Common Voice 21.0
|
68 |
---
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
# Common Voice 21.0 - Persian (fa)
|
73 |
+
|
74 |
+
This is the filtered Persian (farsi) version of the latest (21.0) [Common Voice](https://commonvoice.mozilla.org/en/datasets) dataset, including only fully validated samples with zero down votes (`down_votes = 0`).
|
75 |
+
|
76 |
+
---
|
77 |
+
|
78 |
+
## ๐ Dataset Statistics
|
79 |
+
|
80 |
+
### ๐น Train Set (`train`)
|
81 |
+
| Metric | Value |
|
82 |
+
|----------------------------|---------------------------|
|
83 |
+
| Number of samples | 29,729 |
|
84 |
+
| Total duration | 31.53 hours (113505.36 seconds) |
|
85 |
+
| Average sample duration | 3.82 seconds |
|
86 |
+
|
87 |
+
### ๐น Validation Set (`validation`)
|
88 |
+
| Metric | Value |
|
89 |
+
|----------------------------|---------------------------|
|
90 |
+
| Number of samples | 10,668 |
|
91 |
+
| Total duration | 12.60 hours (45376.80 seconds) |
|
92 |
+
| Average sample duration | 4.25 seconds |
|
93 |
+
|
94 |
+
### ๐น Test Set (`test`)
|
95 |
+
| Metric | Value |
|
96 |
+
|----------------------------|---------------------------|
|
97 |
+
| Number of samples | 10,668 |
|
98 |
+
| Total duration | 14.65 hours (52735.08 seconds) |
|
99 |
+
| Average sample duration | 4.94 seconds |
|
100 |
+
|
101 |
+
---
|
102 |
+
### ๐ Overall Statistics
|
103 |
+
| Metric | Value |
|
104 |
+
|----------------------------|---------------------------|
|
105 |
+
| Number of splits | 3 |
|
106 |
+
| Total number of samples | 51,065 |
|
107 |
+
| Total duration | 58.78 hours (211617.24 seconds) |
|
108 |
+
| Average sample duration | 4.14 seconds |
|
109 |
+
|
110 |
+
---
|
111 |
+
|
112 |
+
## ๐งช Usage
|
113 |
+
|
114 |
+
```python
|
115 |
+
from datasets import load_dataset, Audio
|
116 |
+
|
117 |
+
dataset = load_dataset("aliyzd95/common_voice_21_0_fa", split="train")
|
118 |
+
dataset = dataset.cast_column("audio", Audio(sampling_rate=16000))
|
119 |
+
print(dataset[0]['audio'])
|
120 |
+
```
|
121 |
+
|
122 |
+
---
|
123 |
+
|
124 |
+
## ๐ Licensing Information
|
125 |
+
|
126 |
+
**Public Domain, CC-0**
|
127 |
+
|
128 |
+
---
|
129 |
+
|
130 |
+
## ๐ Citation
|
131 |
+
|
132 |
+
```bibtex
|
133 |
+
@inproceedings{commonvoice:2020,
|
134 |
+
author = {Ardila, R. and Branson, M. and Davis, K. and Henretty, M. and Kohler, M. and Meyer, J. and Morais, R. and Saunders, L. and Tyers, F. M. and Weber, G.},
|
135 |
+
title = {Common Voice: A Massively-Multilingual Speech Corpus},
|
136 |
+
booktitle = {Proceedings of the 12th Conference on Language Resources and Evaluation (LREC 2020)},
|
137 |
+
pages = {4211--4215},
|
138 |
+
year = {2020}
|
139 |
+
}
|
140 |
+
```
|