CoolFace
Datasetpublic

g-group-ai-lab/vi-asr-tech-test

Vietnamese ASR Test Set - Technology A Vietnamese speech-recognition benchmark for the technology domain (Công nghệ), released by G-Group AI Lab. Audio is real-world Vietnamese speech covering consumer electronics reviews, software tutorials, programming and IT walkthroughs — dense in English loanwords and product names. Listen & explore Every utterance is playable inline in the viewer above — hit play on any row to stream the clip. For full-text search across… See the full description on the dataset page: https://huggingface.co/datasets/g-group-ai-lab/vi-asr-tech-test.

sourceHugging Facecc-by-nc-4.0updated 2mo agoView on Hugging Face
0likes65downloads
Dataset Card

Vietnamese ASR Test Set - Technology

A Vietnamese speech-recognition benchmark for the technology domain (Công nghệ), released by G-Group AI Lab.

Audio is real-world Vietnamese speech covering consumer electronics reviews, software tutorials, programming and IT walkthroughs — dense in English loanwords and product names.

Listen & explore

Every utterance is playable inline in the viewer above — hit play on any row to stream the clip. For full-text search across transcripts, duration filters and a DuckDB SQL console over the whole split, open [Data Studio →](https://huggingface.co/datasets/g-group-ai-lab/vi-asr-tech-test/viewer/default/test).

At a glance

Utterances508
Total duration0.49 hours
AudioMP3, 16 kHz, mono
LanguageVietnamese (vi)
Splittest
TaskAutomatic speech recognition

Usage

python
from datasets import load_dataset

ds = load_dataset("g-group-ai-lab/vi-asr-tech-test", split="test")
print(ds[0]["text"])
print(ds[0]["audio"]["sampling_rate"])  # 16000

Stream it without downloading the whole set:

python
ds = load_dataset("g-group-ai-lab/vi-asr-tech-test", split="test", streaming=True)
print(next(iter(ds))["text"])

Fields

ColumnTypeDescription
idstringUtterance id (matches the source audio file stem)
audioAudio(16 kHz)Mono MP3, embedded as-is (no re-encoding)
textstringReference transcript
durationfloat32Audio duration in seconds

Related test sets

License

Released under CC BY-NC 4.0 — free for non-commercial use with attribution.

Citation

bibtex
@misc{vi_asr_tech_test_2026,
  title  = {Vietnamese ASR Test Set - Technology},
  author = {G-Group AI Lab},
  year   = {2026},
  url    = {https://huggingface.co/datasets/g-group-ai-lab/vi-asr-tech-test}
}