Download Latest Version Less VRAM + bug fixes source code.tar.gz (4.7 MB)
Email in envelope

Get an email when there's a new version of Unsloth

Home / May-2025
Name Modified Size InfoDownloads / Week
Parent folder
Qwen3 source code.tar.gz 2025-05-01 2.8 MB
Qwen3 source code.zip 2025-05-01 2.9 MB
README.md 2025-05-01 5.4 kB
Totals: 3 Items   5.7 MB 0

Qwen 3 support + bug fixes

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

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

image

There are also many bug fixes in this release!

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

:::python
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: https://github.com/unslothai/unsloth/compare/2025-03...May-2025

Source: README.md, updated 2025-05-01