diff --git a/unsloth/models/llama.py b/unsloth/models/llama.py index 4e83e69d60..3c4d8f3b38 100644 --- a/unsloth/models/llama.py +++ b/unsloth/models/llama.py @@ -1804,6 +1804,7 @@ class FastLlamaModel: @staticmethod def post_patch(model, tokenizer): model, tokenizer = patch_model_and_tokenizer(model, tokenizer, downcast_rope = True) + return model, tokenizer pass