From 41fea7de7aad072083088dcfe6c00080a5dac90d Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Fri, 16 May 2025 23:02:06 -0700 Subject: [PATCH] Update mapper.py --- unsloth/models/mapper.py | 32 ++++++++++++++++++++++---------- 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/unsloth/models/mapper.py b/unsloth/models/mapper.py index 4bbd8295cc..e50a5a877d 100644 --- a/unsloth/models/mapper.py +++ b/unsloth/models/mapper.py @@ -728,16 +728,6 @@ __INT_TO_FLOAT_MAPPER = \ "mistralai/Mistral-Small-3.1-24B-Base-2503", "unsloth/Mistral-Small-3.1-24B-Base-2503-bnb-4bit", ), - "unsloth/orpheus-3b-0.1-pretrained-unsloth-bnb-4bit" : ( - "unsloth/orpheus-3b-0.1-pretrained", - "canopylabs/orpheus-3b-0.1-pretrained", - "unsloth/orpheus-3b-0.1-pretrained-bnb-4bit", - ), - "unsloth/orpheus-3b-0.1-ft-unsloth-bnb-4bit" : ( - "unsloth/orpheus-3b-0.1-ft", - "canopylabs/orpheus-3b-0.1-ft", - "unsloth/orpheus-3b-0.1-ft-bnb-4bit", - ), "unsloth/Qwen3-0.6B-unsloth-bnb-4bit" : ( "unsloth/Qwen3-0.6B", "Qwen/Qwen3-0.6B", @@ -817,6 +807,16 @@ __INT_TO_FLOAT_MAPPER = \ "microsoft/Phi-4-mini-reasoning", "unsloth/phi-4-mini-reasoning-bnb-4bit", ), + "unsloth/orpheus-3b-0.1-pretrained-unsloth-bnb-4bit" : ( + "unsloth/orpheus-3b-0.1-pretrained", + "canopylabs/orpheus-3b-0.1-pretrained", + "unsloth/orpheus-3b-0.1-pretrained-bnb-4bit", + ), + "unsloth/orpheus-3b-0.1-ft-unsloth-bnb-4bit" : ( + "unsloth/orpheus-3b-0.1-ft", + "canopylabs/orpheus-3b-0.1-ft", + "unsloth/orpheus-3b-0.1-ft-bnb-4bit", + ), "unsloth/csm-1b" : ( "unsloth/csm-1b", "sesame/csm-1b", @@ -837,6 +837,18 @@ __INT_TO_FLOAT_MAPPER = \ "unsloth/CrisperWhisper", "nyrahealth/CrisperWhisper", ), + "unsloth/Llasa-1B" : ( + "unsloth/Llasa-1B", + "HKUSTAudio/Llasa-1B", + ), + "unsloth/Spark-TTS-0.5B" : ( + "unsloth/Spark-TTS-0.5B", + "SparkAudio/Spark-TTS-0.5B", + ), + "unsloth/Llama-OuteTTS-1.0-1B" : ( + "unsloth/Llama-OuteTTS-1.0-1B", + "OuteAI/Llama-OuteTTS-1.0-1B", + ), } INT_TO_FLOAT_MAPPER = {}