doof-ferb commited on
Commit
210d6ad
1 Parent(s): cade5bb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +32 -0
README.md CHANGED
@@ -1,4 +1,9 @@
1
  ---
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: audio
@@ -17,3 +22,30 @@ configs:
17
  - split: train
18
  path: data/train-*
19
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-nc-sa-4.0
3
+ task_categories: ["automatic-speech-recognition"]
4
+ language: ["vi"]
5
+ pretty_name: VLSP 2020 - VinAI - ASR challenge dataset
6
+ size_categories: ["10K<n<100K"]
7
  dataset_info:
8
  features:
9
  - name: audio
 
22
  - split: train
23
  path: data/train-*
24
  ---
25
+
26
+ # unofficial mirror of VLSP 2020 - VinAI - ASR challenge dataset
27
+
28
+ official announcement:
29
+ - tiếng việt: https://institute.vinbigdata.org/events/vinbigdata-chia-se-100-gio-du-lieu-tieng-noi-cho-cong-dong/
30
+ - in eglish: https://institute.vinbigdata.org/en/events/vinbigdata-shares-100-hour-data-for-the-community/
31
+
32
+ official download: https://drive.google.com/file/d/1vUSxdORDxk-ePUt-bUVDahpoXiqKchMx/view?usp=sharing
33
+
34
+ contact: info@vinbigdata.org
35
+
36
+ 100h, 56.4k samples, accuracy 96%
37
+
38
+ pre-process: merge all transcript text files into 1, remove token `<unk>`
39
+
40
+ need to do: restore foreign words phonetised to vietnamese
41
+
42
+ usage with HuggingFace:
43
+ ```python
44
+ # pip install -q "datasets[audio]"
45
+ from datasets import load_dataset
46
+ from torch.utils.data import DataLoader
47
+
48
+ dataset = load_dataset("doof-ferb/vlsp2020_vinai_100h", split="train", streaming=True)
49
+ dataset.set_format(type="torch", columns=["audio", "transcription"])
50
+ dataloader = DataLoader(dataset, batch_size=4)
51
+ ```