doof-ferb/vais1000
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: # pip install -q "datasets[audio]" from datasets import load_dataset from torch.utils.data import… See the full description on the dataset page: https://huggingface.co/datasets/doof-ferb/vais1000.
unofficial mirror of VAIS-1000
official announcement: https://vais.vn/vi/tai-ve/htsforvietnamese (dead)
mirror: https://github.com/undertheseanlp/texttospeech/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:
# 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)