File size: 1,161 Bytes
632ae3a
50e1195
 
 
 
 
 
 
 
 
632ae3a
 
 
 
 
 
 
 
50e1195
632ae3a
 
50e1195
632ae3a
 
 
 
 
 
50e1195
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
license: cc-by-4.0
task_categories:
- automatic-speech-recognition
- text-to-speech
language:
- vi
pretty_name: VAIS-1000
size_categories:
- n<1K
dataset_info:
  features:
  - name: audio
    dtype: audio
  - name: transcription
    dtype: string
  splits:
  - name: train
    num_bytes: 187348211
    num_examples: 1000
  download_size: 169120503
  dataset_size: 187348211
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

# unofficial mirror of VAIS-1000

official announcement: https://vais.vn/vi/tai-ve/hts_for_vietnamese (dead)

mirror: https://github.com/undertheseanlp/text_to_speech/tree/run/data/vais1000/raw

small only 1h40min audio - 1 speaker (female northern accent) - 1k samples

pre-process: none

need to do: check misspelling, restore foreign words phonetised to vietnamese

usage with HuggingFace:
```python
# pip install -q "datasets[audio]"
from datasets import load_dataset
from torch.utils.data import DataLoader

dataset = load_dataset("doof-ferb/vais1000", split="train")
dataset.set_format(type="torch", columns=["audio", "transcription"])
dataloader = DataLoader(dataset, batch_size=4)
```