-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathdemo.py
More file actions
37 lines (31 loc) · 1.08 KB
/
Copy pathdemo.py
File metadata and controls
37 lines (31 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
# Copyright FunASR (https://github.com/alibaba-damo-academy/FunASR). All Rights Reserved.
# MIT License (https://opensource.org/licenses/MIT)
# To install requirements: pip install qwen-asr
from funasr import AutoModel
# Initialize Qwen3-ASR model
# hub: "ms" for ModelScope (default), "hf" for HuggingFace
model = AutoModel(
model="Qwen/Qwen3-ASR-1.7B",
hub="hf",
device="cuda:0",
dtype="bf16",
)
# Chinese speech recognition
res = model.generate(
input="https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-ASR-Repo/asr_zh.wav",
language="Chinese",
)
print("Chinese:", res[0]["text"])
# English speech recognition
res = model.generate(
input="https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-ASR-Repo/asr_en.wav",
language="English",
)
print("English:", res[0]["text"])
# Auto language detection (supports 52 languages)
res = model.generate(
input="https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-ASR-Repo/asr_zh.wav",
)
print("Auto:", res[0]["text"], "| Language:", res[0].get("language", ""))