github unslothai/unsloth May-2025
Qwen3

latest releases: August-2025-v2, August-2025, July-2025...
4 months ago

Qwen 3 support + bug fixes

Please update Unsloth via pip install --upgrade --force-reinstall "unsloth==2025.4.7" unsloth_zoo

Qwen 3 notebook: https://colab.research.google.com/github/unslothai/notebooks/blob/main/nb/Qwen3_(14B)-Reasoning-Conversational.ipynb

There are also many bug fixes in this release!

The 30B MoE is also fine-tunable in Unsloth!

from unsloth import FastModel
import torch
model, tokenizer = FastModel.from_pretrained(
    model_name = "unsloth/Qwen3-30B-A3B",
    max_seq_length = 2048, # Choose any for long context!
    load_in_4bit = True,  # 4 bit quantization to reduce memory
    load_in_8bit = False, # [NEW!] A bit more accurate, uses 2x memory
    full_finetuning = False, # [NEW!] We have full finetuning now!
    # token = "hf_...", # use one if using gated models
)

What's Changed

New Contributors

Full Changelog: 2025-03...May-2025

Don't miss a new unsloth release

NewReleases is sending notifications on new releases.