Skip to content

Commit 221b4a4

Browse files
authored
gguf-py : fix missing comma after bad merge in tensor-mapping (ggml-org#21558)
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.
1 parent 9dfdfc1 commit 221b4a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gguf-py/gguf/tensor_mapping.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1441,7 +1441,7 @@ class TensorNameMap:
14411441
"visual.blocks.{bid}.attn.qkv", # qwen3vl
14421442
"model.vision.transformer.layers.{bid}.attention.query_key_value", # cogvlm
14431443
"model.vision_model.transformer.layers.{bid}.self_attn.qkv_proj", # Deepseek-OCR CLIP
1444-
"vision_tower.encoder.blocks.{bid}.wqkv" # Kimi-K2.5
1444+
"vision_tower.encoder.blocks.{bid}.wqkv", # Kimi-K2.5
14451445
"vision_model.radio_model.model.blocks.{bid}.attn.qkv", # Nemotron Nano v2 VL
14461446
),
14471447

0 commit comments

Comments
 (0)