-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Open
Labels
Description
- Did you update?
pip install --upgrade unsloth unsloth_zoo ColaborKaggleor local / cloud- Number GPUs used, use
nvidia-smi - Which notebook?
- Paste
Unslothprintout with 🦥 sloth emoji - Which trainer?
SFTTrainer,GRPOTraineretc - Minimal code to reproduce error Remove Hugging Face token!
For quick replies, got to https://discord.com/invite/unsloth.
Have you tried https://docs.unsloth.ai/basics/errors-troubleshooting
For full finetune, it gives out: RuntimeError: only Tensors of floating point dtype can require gradients
Model used: unsloth/Qwen3-0.6B-Base (I manually downloaded from the website)
Model loaded as below:
model, tokenizer = FastLanguageModel.from_pretrained(
model_name = mdl_path, load_in_4bit = False,
max_seq_length = max_seq_length,
dtype = None,
full_finetuning = True, # We have full finetuning now!
)