Views
No views yet
Qwen/Qwen3-ASR-1.7B on Korean speech data for automatic speech recognition (ASR). It achieves lower error rates than the base model across Korean benchmarks, with negligible degradation on English (LibriSpeech).| Dataset | Metric | Qwen3-ASR-1.7B (base) | This model | Change (%p) |
|---|---|---|---|---|
| clova_call | CER | 0.0448 | 0.0293 | -1.55 |
| common_voice_ko | CER | 0.0719 | 0.0628 | -0.91 |
| fleurs_ko | CER | 0.0142 | 0.0138 | -0.04 |
| ksponspeech | CER | 0.0865 | 0.0670 | -1.95 |
| zeroth | CER | 0.0264 | 0.0230 | -0.34 |
| Korean total | CER | 0.0686 | 0.0537 | -1.49 |
| librispeech (English, reference) | WER | 0.0250 | 0.0246 | -0.04 |
| Dataset | Retained records |
|---|---|
| clova_call | 1,083 |
| common_voice_ko | 564 |
| fleurs_ko | 382 |
| zeroth | 449 |
| kspon_eval_clean | 2,946 |
| kspon_eval_other | 2,959 |
| Total | 8,383 |
qwen-asr package as the base model.pip install -U qwen-asr1import torch
2from qwen_asr import Qwen3ASRModel
3
4model = Qwen3ASRModel.from_pretrained(
5 "TeamUNIVA/qwen3_asr_1.7b_ko_beta",
6 dtype=torch.bfloat16,
7 device_map="cuda:0",
8 max_inference_batch_size=32,
9 max_new_tokens=256,
10)
11
12results = model.transcribe(
13 audio="path/to/audio.wav",
14 language="ko",
15)
16
17print(results[0].text)