From a379ac16289976b7024be03ff3e9c0d1bbcd4f39 Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Thu, 26 Jun 2025 08:37:41 -0700 Subject: [PATCH] Update mapper.py --- unsloth/models/mapper.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/unsloth/models/mapper.py b/unsloth/models/mapper.py index fdf95691a9..3f8b07706e 100644 --- a/unsloth/models/mapper.py +++ b/unsloth/models/mapper.py @@ -879,6 +879,26 @@ __INT_TO_FLOAT_MAPPER = \ "mistralai/Mistral-Small-3.2-24B-Instruct-2506", "unsloth/Mistral-Small-3.2-24B-Instruct-2506-bnb-4bit", ), + "unsloth/gemma-3n-E4B-it-unsloth-bnb-4bit" : ( + "unsloth/gemma-3n-E4B-it", + "google/gemma-3n-E4B-it", + "unsloth/gemma-3n-E4B-it-bnb-4bit", + ), + "unsloth/gemma-3n-E2B-it-unsloth-bnb-4bit" : ( + "unsloth/gemma-3n-E2B-it", + "google/gemma-3n-E2B-it", + "unsloth/gemma-3n-E2B-it-bnb-4bit", + ), + "unsloth/gemma-3n-E4B-unsloth-bnb-4bit" : ( + "unsloth/gemma-3n-E4B", + "google/gemma-3n-E4B", + "unsloth/gemma-3n-E4B-bnb-4bit", + ), + "unsloth/gemma-3n-E2B-unsloth-bnb-4bit" : ( + "unsloth/gemma-3n-E2B", + "google/gemma-3n-E2B", + "unsloth/gemma-3n-E2B-bnb-4bit", + ), } INT_TO_FLOAT_MAPPER = {}