From 067db89dc362414c8265f8bc0192e4417a468615 Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Thu, 30 Oct 2025 06:30:43 -0700 Subject: [PATCH] Update vision.py --- unsloth/models/vision.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unsloth/models/vision.py b/unsloth/models/vision.py index cb8909818d..95c6e65317 100644 --- a/unsloth/models/vision.py +++ b/unsloth/models/vision.py @@ -521,8 +521,8 @@ class FastBaseModel: ) else: print( - f"Unsloth: Using full float32 full finetuning.\n" - f"To enable bfloat16 training to reduce VRAM usage by 50% albeit with a slightly higher loss, "\ + f"Unsloth: Using full float32 full finetuning. " + f"To enable bfloat16 training to reduce VRAM usage by 50% albeit with a slightly higher loss, do:\n"\ "use `float32_mixed_precision = False` during FastLanguageModel.from_pretrained" ) os.environ["UNSLOTH_BFLOAT16_MIXED_PRECISION"] = "1"