From c7047d014f4066aff67a8cf06698ed013374fd0b Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Fri, 30 May 2025 01:38:53 -0700 Subject: [PATCH] DeepSeek R1 Qwen --- unsloth/models/_utils.py | 2 +- unsloth/models/mapper.py | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/unsloth/models/_utils.py b/unsloth/models/_utils.py index 4bfaf6a963..0ad258889e 100644 --- a/unsloth/models/_utils.py +++ b/unsloth/models/_utils.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "2025.5.9" +__version__ = "2025.5.10" __all__ = [ "SUPPORTS_BFLOAT16", diff --git a/unsloth/models/mapper.py b/unsloth/models/mapper.py index 50f0f7d7fb..8bd31efd46 100644 --- a/unsloth/models/mapper.py +++ b/unsloth/models/mapper.py @@ -864,6 +864,11 @@ __INT_TO_FLOAT_MAPPER = \ "mistralai/Devstral-Small-2505", "unsloth/Devstral-Small-2505-bnb-4bit", ), + "unsloth/DeepSeek-R1-0528-Qwen3-8B-unsloth-bnb-4bit" : ( + "unsloth/DeepSeek-R1-0528-Qwen3-8B", + "deepseek-ai/DeepSeek-R1-0528-Qwen3-8B", + "unsloth/DeepSeek-R1-0528-Qwen3-8B-bnb-4bit", + ), } INT_TO_FLOAT_MAPPER = {}