What problem does it solve? Fine-tuning large language models typically demands excessive VRAM and slow training runs, blocking developers with consumer GPUs from customizing models like Llama, Qwen, Gemma, or Mistral for their own tasks. ## Core Features & Use Cases - Memory-Efficient Fine-Tuning: Apply LoRA and QLoRA (4-bit) training to fit models from 3B to 70B+ parameters on limited VRAM, with documented VRAM requirement tables per model size. - Reinforcement Learning: Train reasoning models with GRPO, GSPO, DPO, ORPO, and KTO using up to 80% less VRAM than standard RL setups. - Model Export & Deployment: Save fine-tuned models to GGUF for Ollama and llama.cpp, or to 16-bit for vLLM and SGLang serving. - Use Case: Fine-tune Llama 3.1 (8B) on a custom instruction dataset in a free Colab notebook, then export it to GGUF and run it locally in Ollama. ## Quick Start Ask the assistant to show how to fine-tune a Llama model with Unsloth QLoRA on a custom dataset and export it to GGUF for Ollama.