Views
No views yet

Disclaimer / Notice: Details for these are in Peer Review and publications of the paper will be made available soon for more details.
1import torch
2from qwen_asr import Qwen3ASRModel
3
4# Load the model
5model = Qwen3ASRModel.from_pretrained(
6 "andrewbawitlung/qwen3-asr-1.7b-mizonal3-E1-lus-v2026.06",
7 dtype=torch.bfloat16,
8 device_map="cuda:0" # Adjust device as needed
9)
10
11# Transcribe audio
12results = model.transcribe("your_audio.wav")
13print(results)| Experiment | Hugging Face Repository |
|---|---|
| E1 (Baseline) | andrewbawitlung/qwen3-asr-1.7b-mizonal3-E1-lus-v2026.06 |
| E2 (Noise) | andrewbawitlung/qwen3-asr-1.7b-mizonal3-E2-lus-v2026.06 |
| E3 (Speed) | andrewbawitlung/qwen3-asr-1.7b-mizonal3-E3-lus-v2026.06 |
| E4 (SpecAug) | andrewbawitlung/qwen3-asr-1.7b-mizonal3-E4-lus-v2026.06 |
| E5 (Combined) | andrewbawitlung/qwen3-asr-1.7b-mizonal3-E5-lus-v2026.06 |
| step | epoch | train_loss | eval_loss | eval_wer | eval_cer | learning_rate | grad_norm |
|---|---|---|---|---|---|---|---|
| 200 | 2.9018 | 0.4432 | 0.2900 | 24.8613 | 5.5626 | 1.31e-05 | 7.5000 |
| 400 | 5.8000 | 0.2058 | 0.2927 | 22.8374 | 5.2552 | 5.67e-06 | 6.2500 |