Views
No views yet
RareElf/kalenjin-asrfacebook/wav2vec2-xls-r-300m for automatic speech recognition (ASR) in Kalenjin. It represents the Stage 2 research milestone in research inquiry into low-resource Nilotic languages at iLabAfrica, Strathmore University.kln)facebook/wav2vec2-xls-r-300mmask_time_prob=0.05)patience=5)| Decoding Strategy | WER (%) | CER (%) |
|---|---|---|
| KenLM Beam Search | 61.75 | 20.11 |
| Greedy Decoding | 69.03 | 24.15 |
~10.36% absolute WER improvement over Stage 1 baseline.
1@phdthesis{obote2026asr,
2 author = {Obote, Kevin},
3 title = {Automatic Speech Recognition for Low-Resource Nilotic Languages: A Stage-2 Acoustic Adaptation Approach},
4 school = {iLabAfrica, Strathmore University},
5 year = {2026}
6}.bin or .arpa) file to the repository:1from huggingface_hub import HfApi
2
3api = HfApi()
4repo_id = "RareElf/kalenjin-asr"
5
6api.upload_file(
7 path_or_fileobj="path/to/your/kalenjin_lm.bin",
8 path_in_repo="kalenjin_lm.bin",
9 repo_id=repo_id,
10 repo_type="model"
11)
12
13print(f"KenLM binary uploaded to {repo_id}")