Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,4 +1,13 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
dataset_info:
|
| 3 |
features:
|
| 4 |
- name: audio
|
|
@@ -37,3 +46,26 @@ configs:
|
|
| 37 |
- split: test
|
| 38 |
path: data/test-*
|
| 39 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- automatic-speech-recognition
|
| 5 |
+
- text-to-speech
|
| 6 |
+
language:
|
| 7 |
+
- vi
|
| 8 |
+
pretty_name: a novel large-scale Vietnamese speech corpus (LSVSC)
|
| 9 |
+
size_categories:
|
| 10 |
+
- 10K<n<100K
|
| 11 |
dataset_info:
|
| 12 |
features:
|
| 13 |
- name: audio
|
|
|
|
| 46 |
- split: test
|
| 47 |
path: data/test-*
|
| 48 |
---
|
| 49 |
+
|
| 50 |
+
# unofficial mirror of LSVSC dataset (novel large-scale Vietnamese speech corpus)
|
| 51 |
+
|
| 52 |
+
official announcement: https://www.mdpi.com/2079-9292/13/5/977
|
| 53 |
+
|
| 54 |
+
official download: https://drive.google.com/drive/folders/1tiPKaIOC7bt6isv5qFqf61O_2jFK8ZOI
|
| 55 |
+
|
| 56 |
+
100h, 57k samples
|
| 57 |
+
|
| 58 |
+
pre-process: remove non-sense characters: `\r` `\n`
|
| 59 |
+
|
| 60 |
+
need to do: check misspelling, restore foreign words phonetised to vietnamese
|
| 61 |
+
|
| 62 |
+
usage with HuggingFace:
|
| 63 |
+
```python
|
| 64 |
+
# pip install -q "datasets[audio]"
|
| 65 |
+
from datasets import load_dataset
|
| 66 |
+
from torch.utils.data import DataLoader
|
| 67 |
+
|
| 68 |
+
dataset = load_dataset("doof-ferb/LSVSC", split="train", streaming=True)
|
| 69 |
+
dataset.set_format(type="torch", columns=["audio", "transcription"])
|
| 70 |
+
dataloader = DataLoader(dataset, batch_size=4)
|
| 71 |
+
```
|