Datasets:
Tasks:
Automatic Speech Recognition
Formats:
parquet
Languages:
Persian
Size:
10K - 100K
Tags:
hezar
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
task_categories:
|
3 |
+
- automatic-speech-recognition
|
4 |
+
language:
|
5 |
+
- fa
|
6 |
+
tags:
|
7 |
+
- hezar
|
8 |
+
pretty_name: CommonVoice 13 (Persian)
|
9 |
+
size_categories:
|
10 |
+
- 10K<n<100K
|
11 |
+
---
|
12 |
+
The Persian portion of the original CommonVoice 13 dataset at https://huggingface.co/datasets/mozilla-foundation/common_voice_13_0
|
13 |
+
|
14 |
+
#### Load
|
15 |
+
```python
|
16 |
+
# Using HF Datasets
|
17 |
+
from datasets import load_dataset
|
18 |
+
|
19 |
+
dataset = load_dataset("hezarai/common-voice-13-fa", split="train")
|
20 |
+
|
21 |
+
# Using Hezar
|
22 |
+
from hezar.data import Dataset
|
23 |
+
|
24 |
+
dataset = Dataset.load("hezarai/common-voice-13-fa", split="train")
|
25 |
+
```
|