Automatic Speech Recognition
PEFT
Safetensors
Tibetan
tibetan
low-resource
whisper
lora
Eval Results (legacy)
Instructions to use billingsmoore/tibetan-asr-nict-tib1-whisper-tiny-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use billingsmoore/tibetan-asr-nict-tib1-whisper-tiny-lora with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
Update model card with published paper citation
Browse files
README.md
CHANGED
|
@@ -4,6 +4,7 @@ datasets:
|
|
| 4 |
- billingsmoore/tibetan-asr
|
| 5 |
language:
|
| 6 |
- bo
|
|
|
|
| 7 |
tags:
|
| 8 |
- asr
|
| 9 |
- tibetan
|
|
@@ -12,8 +13,15 @@ tags:
|
|
| 12 |
|
| 13 |
# tibetan-asr-whisper-tiny-lora
|
| 14 |
|
| 15 |
-
Fine-tuned on the [NICT-Tib1](https://huggingface.co/datasets/billingsmoore/tibetan-asr) Tibetan speech dataset,
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
- **Base model:** `openai/whisper-tiny`
|
| 19 |
- **Dataset:** `billingsmoore/tibetan-asr`
|
|
@@ -21,4 +29,18 @@ models evaluated in a benchmarking study of Tibetan ASR architectures.
|
|
| 21 |
|
| 22 |
This repo contains a LoRA adapter (via [PEFT](https://github.com/huggingface/peft)) fine-tuned on top of the base model above. Load it with `peft`'s `PeftModel.from_pretrained(base_model, this_repo)`.
|
| 23 |
|
| 24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
- billingsmoore/tibetan-asr
|
| 5 |
language:
|
| 6 |
- bo
|
| 7 |
+
license: cc-by-4.0
|
| 8 |
tags:
|
| 9 |
- asr
|
| 10 |
- tibetan
|
|
|
|
| 13 |
|
| 14 |
# tibetan-asr-whisper-tiny-lora
|
| 15 |
|
| 16 |
+
Fine-tuned on the [NICT-Tib1](https://huggingface.co/datasets/billingsmoore/tibetan-asr) Tibetan speech dataset,
|
| 17 |
+
one of five architectures (Whisper Tiny/Base/Small, Wav2Vec2, HuBERT) and six adaptation strategies
|
| 18 |
+
(standard fine-tuning, 8-bit/4-bit quantization, LoRA, and 8-bit/4-bit QLoRA) benchmarked in:
|
| 19 |
+
|
| 20 |
+
> 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.
|
| 21 |
+
|
| 22 |
+
The paper introduces Segmented Word Error Rate (SWER) — a word-level evaluation framework for
|
| 23 |
+
Tibetan ASR built on automatic segmentation — and reports CER, SER, and SWER results for every
|
| 24 |
+
model/adaptation combination. See the paper for full benchmark tables and metric analysis.
|
| 25 |
|
| 26 |
- **Base model:** `openai/whisper-tiny`
|
| 27 |
- **Dataset:** `billingsmoore/tibetan-asr`
|
|
|
|
| 29 |
|
| 30 |
This repo contains a LoRA adapter (via [PEFT](https://github.com/huggingface/peft)) fine-tuned on top of the base model above. Load it with `peft`'s `PeftModel.from_pretrained(base_model, this_repo)`.
|
| 31 |
|
| 32 |
+
## Citation
|
| 33 |
+
|
| 34 |
+
If you use this model, please cite:
|
| 35 |
+
|
| 36 |
+
```bibtex
|
| 37 |
+
@ARTICLE{moore2026tibetanasr,
|
| 38 |
+
author={Moore, Jacob and Li, Sheng and Lauren, Paula},
|
| 39 |
+
journal={IEEE Access},
|
| 40 |
+
title={Evaluating Tibetan {ASR} With Segmented Word Error Rate: Beyond Character-Level Metrics},
|
| 41 |
+
year={2026},
|
| 42 |
+
volume={14},
|
| 43 |
+
pages={101790-101805},
|
| 44 |
+
doi={10.1109/ACCESS.2026.3709206}
|
| 45 |
+
}
|
| 46 |
+
```
|