Views
No views yet
language=None, max_new_tokens=512, batch size 1).
Lower WER and CER are better.| Evaluation | Curated variant | Broader mixed variant |
|---|---|---|
| Curated-source heldout WER | 36.99% | 37.46% |
| Curated-source heldout CER | 15.71% | 16.18% |
| WAXAL WER | 37.56% | 36.57% |
| WAXAL CER | 16.45% | 15.57% |
| Supplemental-source heldout WER | Not evaluated | 31.47% |
| Supplemental-source heldout CER | Not evaluated | 13.87% |
pip install -U qwen-asr1import torch
2from qwen_asr import Qwen3ASRModel
3
4model = Qwen3ASRModel.from_pretrained(
5 "b1n1yam/qwen3-asr-0.6b-amharic-mixed",
6 dtype=torch.bfloat16,
7 device_map="cuda:0",
8 max_inference_batch_size=8,
9 max_new_tokens=512,
10)
11
12result = model.transcribe(
13 audio="path/to/audio.wav",
14 language=None,
15)
16
17print(result[0].text)language=None; this is the
setting used for the reported benchmarks.