why not in base llama.cpp?

#2
by kalle07 - opened

why not in base llama.cpp?

error loading model: missing tensor 'blk.64.attn_norm.weight'

INFO:hf-to-gguf:Model architecture: Qwen3_5ForConditionalGeneration
WARNING:hf-to-gguf:Failed to load model config from downloads/tmph2pipq56/Qwen-Image-Bench: The checkpoint you are trying to load has model type qwen3_5 but Transformers does not recognize this architecture. This could be because of an issue with the checkpoint, or because your version of Transformers is out of date.

You can face similar problems if the model has multi token prediction aka mtp and at llama.cpp conversion phase the —mtp (or vice vrsa —no-mtp) flags is not applied. I haven’t looked at this model particularly but make sure you use the mtp flags to convert the “base” model and the separate mtp sidekick in case of an mtp model.
I suspect the issue is related to that here
I can be wrong (I haven’t checked this case in depth)

Sign up or log in to comment