A fine-tuned checkpoint of
Qwen/Qwen3-ASR-1.7B optimized for Japanese automatic speech recognition.
This variant is specifically trained to improve recognition of Japanese proper nouns, organization names, product names, service names, and kanji-heavy expressions that general-purpose ASR models tend to mistranscribe.
1import torch
2from qwen_asr import Qwen3ASRModel
3
4model = Qwen3ASRModel.from_pretrained(
5 "neosophie/Qwen3-ASR-1.7B-JA",
6 dtype=torch.bfloat16,
7 device_map="cuda:0",
8)
9
10results = model.transcribe(audio="/path/to/audio.wav")
11
12print(results[0].language)
13print(results[0].text)