arxyzan commited on
Commit
6cea608
1 Parent(s): 9e00e3a

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -0
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
+ ```