Skip to content
Discussion options

You must be logged in to vote

Yes - for French ASR today, you can start with an existing model instead of training one from scratch. The answer is different from when this question was opened in 2024.

Current FunASR can run Qwen3-ASR-0.6B / 1.7B, whose published language table explicitly includes French (fr) and supports both offline and streaming inference. A minimal offline example is:

pip install -U funasr "qwen-asr==0.0.6" "transformers==4.57.6" accelerate
from funasr import AutoModel

model = AutoModel(
    model="Qwen/Qwen3-ASR-0.6B",
    hub="hf",
    device="cuda:0",
    dtype="bf16",
)

result = model.generate(input="french.wav", language="fr")
print(result[0]["text"])

# Omit language="fr" if you want automa…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by LauraGPT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants