]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
model : add text-only support for Kimi-VL (and find special tokens in text_config...
authorGabriel Larson <redacted>
Sun, 3 Aug 2025 14:56:25 +0000 (09:56 -0500)
committerGitHub <redacted>
Sun, 3 Aug 2025 14:56:25 +0000 (16:56 +0200)
* basic kimi-vl textmodel conversion

* check config["text_config"] for special tokens

convert_hf_to_gguf.py
gguf-py/gguf/vocab.py

index f13f8558b2ec4a8030518ff1d66bb811a3c4293d..5f15c8257cbef5fb0be1ce4b51f0d195ef7ea621 100755 (executable)
@@ -6059,6 +6059,7 @@ class DeepseekModel(TextModel):
 
 @ModelBase.register("DeepseekV2ForCausalLM")
 @ModelBase.register("DeepseekV3ForCausalLM")
+@ModelBase.register("KimiVLForConditionalGeneration")
 class DeepseekV2Model(TextModel):
     model_arch = gguf.MODEL_ARCH.DEEPSEEK2
 
@@ -6161,6 +6162,13 @@ class DeepseekV2Model(TextModel):
     _experts: list[dict[str, Tensor]] | None = None
 
     def modify_tensors(self, data_torch: Tensor, name: str, bid: int | None) -> Iterable[tuple[str, Tensor]]:
+        # skip vision tensors and remove "language_model." for Kimi-VL
+        if "vision_tower" in name or "multi_modal_projector" in name:
+            return []
+
+        if name.startswith("language_model."):
+            name = name.replace("language_model.", "")
+
         # rename e_score_correction_bias tensors
         if name.endswith("e_score_correction_bias"):
             name = name.replace("e_score_correction_bias", "e_score_correction.bias")
index e1d5aaf47ac461af77bba5221d3521347cba8d11..7111557bfdd8c63221b5425040963299329ced38 100644 (file)
@@ -312,7 +312,11 @@ class SpecialVocab:
         with open(config_file, encoding = 'utf-8') as f:
             config = json.load(f)
         for typ in self.special_token_types:
-            self._set_special_token(typ, config.get(f'{typ}_token_id'))
+            token_id = config.get(f'{typ}_token_id')
+            # If not found at root, check in text_config (for multimodal models like Kimi-VL)
+            if token_id is None and 'text_config' in config:
+                token_id = config['text_config'].get(f'{typ}_token_id')
+            self._set_special_token(typ, token_id)
         return True