Views
No views yet
openai/whisper-tiny for automatic speech recognition (ASR) on Lhasa Tibetan, released alongside:J. Moore, S. Li and P. Lauren, "Evaluating Tibetan ASR With Segmented Word Error Rate: Beyond Character-Level Metrics," in IEEE Access, vol. 14, pp. 101790-101805, 2026, doi: 10.1109/ACCESS.2026.3709206.
openai/whisper-tiny| Metric | Value |
|---|---|
| CER (micro) | 0.156 |
| SER (micro) | 0.2351 |
| BoTok-SWER (micro) | 0.2975 |
| BERT-SWER (micro, full 1,547-utt. test set) | 0.118 |
| Gem-SWER (micro, 500-utt. subset) | 0.6759 |
| Model | Repo | CER | SER | BoTok-SWER | BERT-SWER | Gem-SWER |
|---|---|---|---|---|---|---|
| HuBERT Base | tibetan-asr-nict-tib1-hubert-base | 0.1352 | 0.3690 | 0.4477 | 0.161 | 0.9653 |
| Wav2Vec 2.0 Base | tibetan-asr-nict-tib1-wav2vec2-base | 0.0745 | 0.2152 | 0.2747 | 0.097 | 0.7447 |
| Whisper Tiny | tibetan-asr-nict-tib1-whisper-tiny | 0.1560 | 0.2351 | 0.2975 | 0.118 | 0.6759 |
| Whisper Base | tibetan-asr-nict-tib1-whisper-base | 0.1417 | 0.2083 | 0.2600 | 0.105 | 0.6314 |
| Whisper Small | tibetan-asr-nict-tib1-whisper-small | 0.1185 | 0.1692 | 0.2042 | 0.086 | 0.5337 |
1from transformers import pipeline
2
3pipe = pipeline("automatic-speech-recognition", model="billingsmoore/tibetan-asr-nict-tib1-whisper-tiny")
4result = pipe("path/to/audio.wav")
5print(result["text"])1@ARTICLE{11592371,
2 author={Moore, Jacob and Li, Sheng and Lauren, Paula},
3 journal={IEEE Access},
4 title={Evaluating Tibetan ASR With Segmented Word Error Rate: Beyond Character-Level Metrics},
5 year={2026},
6 volume={14},
7 number={},
8 pages={101790-101805},
9 keywords={Modeling;Automatic speech recognition;Error analysis;LoRa;Measurement;Ranking (statistics);Quantization (signal);Bit error rate;Standards;Training;Tibetan;automatic speech recognition;word error rate;low-resource language},
10 doi={10.1109/ACCESS.2026.3709206}
11}
12
13@inproceedings{soky2022nict,
14 title={Nict-tib1: A public speech corpus of lhasa dialect for benchmarking tibetan language speech recognition systems},
15 author={Soky, Kak and Gong, Zhuo and Li, Sheng},
16 booktitle={2022 25th Conference of the Oriental COCOSDA International Committee for the Co-ordination and Standardisation of Speech Databases and Assessment Techniques (O-COCOSDA)},
17 pages={1--5},
18 year={2022},
19 organization={IEEE}
20}openai/whisper-tiny.