Replies: 1 comment
-
|
Hi @gipt66, thanks for the detailed questions. Let me address each: 1. Romanized output for Greek Greek IS one of the 31 supported languages. The romanized output likely happens because the 2. Correct language value for Greek The prompt template is in Chinese ( from funasr import AutoModel
model = AutoModel(
model="FunAudioLLM/Fun-ASR-Nano-2512",
hub="hf",
trust_remote_code=True,
vad_model="fsmn-vad",
vad_kwargs={"max_single_segment_time": 30000},
device="cuda"
)
result = model.generate(input="greek_audio.wav", language="希腊语", batch_size=1)The Chinese name for Greek is 3. These are expected and harmless. The CTC decoder weights exist in the checkpoint for the vLLM inference engine path but are not loaded when using standard AutoModel inference. Safe to ignore. 4. Native script recovery Once you pass |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello I have some questions about the greek language recognition
language=for Greek? Is there a canonical mapping somewhere I missed (ISO 639-1/3, Chinese name, model-specificcode)?
miss key in ckpt: ctc_decoder.*warnings expected, or do they indicate a broken checkpoint?thank you
Beta Was this translation helpful? Give feedback.
All reactions