From c962345f0f09c0dccb38095ca11a2989500a537f Mon Sep 17 00:00:00 2001 From: Xuan Son Nguyen Date: Mon, 27 Jul 2026 21:09:13 +0200 Subject: [PATCH] fix conv --- conversion/mimo.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conversion/mimo.py b/conversion/mimo.py index 6ffe2dcd80..ca2ed28ad3 100644 --- a/conversion/mimo.py +++ b/conversion/mimo.py @@ -314,6 +314,8 @@ class MiMoV2VisionAudioModel(MmprojModel): gguf.TENSOR_NAMES[gguf.MODEL_TENSOR.A_MM_CODE_EMBD] + ".weight", ): return gguf.GGMLQuantizationType.F32 + if ("encoder.conv" in name or "encoder.down_sample_layer" in name) and name.endswith(".weight"): + return gguf.GGMLQuantizationType.F32 return super().tensor_force_quant(name, new_name, bid, n_dims) @classmethod