mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-05-16 19:59:16 +00:00
convert : fix Qwen3 ASR conversion (#23081)
* fix qwen3asr * fix qwen3asr
This commit is contained in:
parent
cc7200bf12
commit
18d1717d62
1 changed files with 3 additions and 0 deletions
|
|
@ -183,6 +183,9 @@ class Qwen3OmniMmprojModel(Qwen3VLVisionModel, Qwen25AudioModel):
|
|||
if name.startswith("model.visual."):
|
||||
name = name.replace("model.visual.", "visual.", 1)
|
||||
|
||||
if name.startswith("thinker.audio_tower."):
|
||||
name = name.replace("thinker.audio_tower.", "audio_tower.", 1)
|
||||
|
||||
if "visual." not in name and "audio_tower." not in name:
|
||||
return None
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue