Skip to content
Discussion options

You must be logged in to vote

Correction to my earlier reply: Greek is not supported by the base FunAudioLLM/Fun-ASR-Nano-2512 checkpoint. The base model covers Chinese (including Cantonese), English, and Japanese. Greek is supported by FunAudioLLM/Fun-ASR-MLT-Nano-2512.

from funasr import AutoModel

model = AutoModel(
    model="FunAudioLLM/Fun-ASR-MLT-Nano-2512",
    trust_remote_code=True,
)
result = model.generate(
    input="your_greek_audio.wav",
    language="希腊语",
    llm_kwargs={"do_sample": False},
)

The romanized output from the base checkpoint is therefore a model/language mismatch, not a Greek post-processing mode. I also found contradictory language claims in the base Hugging Face model card; a bilingual…

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
2 participants