]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
gguf-py : fix missing comma after bad merge in tensor-mapping (#21558)
authorDaniel Bevenius <redacted>
Tue, 7 Apr 2026 19:24:25 +0000 (21:24 +0200)
committerGitHub <redacted>
Tue, 7 Apr 2026 19:24:25 +0000 (21:24 +0200)
This commit adds a missing comma in the vision encoder attention qkv
block.

The motivation for this change is that without the comma there will be
a string concatenation of the Kimi-K2.5 and the Nemotron Nano v2 VL
tensor mappings which will be broken.

gguf-py/gguf/tensor_mapping.py

index 1c324976c3e207da38a1576be1e0ef704fe808ea..9c713456ed258372d4f967526f99e14b2a64f571 100644 (file)
@@ -1441,7 +1441,7 @@ class TensorNameMap:
             "visual.blocks.{bid}.attn.qkv", # qwen3vl
             "model.vision.transformer.layers.{bid}.attention.query_key_value", # cogvlm
             "model.vision_model.transformer.layers.{bid}.self_attn.qkv_proj", # Deepseek-OCR CLIP
-            "vision_tower.encoder.blocks.{bid}.wqkv" # Kimi-K2.5
+            "vision_tower.encoder.blocks.{bid}.wqkv", # Kimi-K2.5
             "vision_model.radio_model.model.blocks.{bid}.attn.qkv", # Nemotron Nano v2 VL
         ),