Qwen3-ASR-0.6B-hf カバー画像

Alibaba (Qwen) が Qwen3-ASR-0.6B-hf をリリース

ALIBABA (QWEN)OSS

最終更新: 2026年06月26日 18:08 元記事 →

Alibaba (Qwen) から Qwen3-ASR-0.6B-hf がリリースされました。

何が変わったのか

Qwen3-ASR (Transformers native)
Overview
The Qwen3-ASR family includes Qwen3-ASR-1.7B and Qwen3-ASR-0.6B, which support language identification and ASR for 52 languages and dialects. Both leverage large-scale speech training data and the strong audio understanding capability of their foundation model, Qwen3-Omni. The 1.7B version achieves state-of-the-art performance among open-source ASR models and is competitive with the strongest proprietary commercial APIs.
Key features:
– All-in-one: Supports language identification and speech recognition for 30 languages and 22 Chinese dialects, including English accents from multiple countries and regions.
– Excellent and Fast: High-quality and robust recognition under complex acoustic environments. Qwen3-ASR-0.6B reaches 2000× throughput at a concurrency of 128. Both models support streaming/offline unified inference with a single model and handle long audio.
– Forced Alignment: Qwen3-ForcedAligner-0.6B supports timestamp prediction for arbitrary units within up to 5 minutes of speech in 11 languages, surpassing E2E-based forced-alignment models in accuracy.
Model Architecture
Available Checkpoints
| Model | Supported Languages | Supported Dialects | Inference Mode | Audio Types |
|—|—|—|—|—|
| Qwen/Qwen3-ASR-1.7B-hf & Qwen/Qwen3-ASR-0.6B-hf | Chinese (zh), English (en), Cantonese (yue), Arabic (ar), German (de), French (fr), Spanish (es), Portuguese (pt), Indonesian (id), Italian (it), Korean (ko), Russian (ru), Thai (th), Vietnamese (vi), Japanese (ja), Turkish (tr), Hindi (hi), Malay (ms), Dutch (nl), Swedish (sv), Danish (da), Finnish (fi), Polish (pl), Czech (cs), Filipino (fil), Persian (fa), Greek (el), Hungarian (hu), Macedonian (mk), Romanian (ro) | Anhui, Dongbei, Fujian, Gansu, Guizhou, Hebei, Henan, Hubei, Hunan, Jiangxi, Ningxia, Shandong, Shaanxi, Shanxi, Sichuan, Tianjin, Yunnan, Zhejiang, Cantonese (HK), Cantonese (Guangdong), Wu, Minnan | Offline / Streaming | Speech, Singing Voice, Songs with BGM |
| Qwen/Qwen3-ForcedAligner-0.6B-hf | Chinese, English, Cantonese, French, German, Italian, Japanese, Korean, Portuguese, Russian, Spanish | — | NAR | Speech |

Usage
Qwen3-ASR is supported natively in 🤗 Transformers. Until it is part of an official Transformers release, install from source:
bash
pip install git+https://github.com/huggingface/transformers
Simple transcription
applytranscriptionrequest handles chat-template formatting for you and is the recommended entry point.
python
from transformers import AutoProcessor, AutoModelForMultimodalLM
modelid = “Qwen/Qwen3-ASR-0.6B-hf”
processor = AutoProcessor.frompretrained(modelid)
model = AutoModelForMultimodalLM.frompretrained(modelid, devicemap=”auto”)
print(f”Model loaded on {model.device} with dtype {model.dtype}”)
inputs = processor.applytranscriptionrequest(
audio=”https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-ASR-Repo/asren.wav”,
).to(model.device, model.dtype)
outputids = model.generate(inputs, maxnewtokens=256)
gen

入手方法・リンク

公式サイトを確認してください。

SOURCE: Alibaba (Qwen) (2026-06-26)

← LLM Watch トップへ

類似投稿

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です