billingsmoore commited on
Commit
06bbd3d
·
verified ·
1 Parent(s): 7a27346

Update model card with published paper citation

Browse files
Files changed (1) hide show
  1. README.md +25 -3
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, one of the
16
- models evaluated in a benchmarking study of Tibetan ASR architectures.
 
 
 
 
 
 
 
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
- This model is private, pending publication of the associated paper.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ```