What problem does it solve? Full fine-tuning of large language models (7B-70B parameters) requires enormous GPU memory and produces multi-gigabyte checkpoints. This Skill enables parameter-efficient fine-tuning that trains less than 1% of model parameters, producing megabyte-sized adapters that run on consumer GPUs. ## Core Features & Use Cases - LoRA and QLoRA Fine-Tuning: Train low-rank adapters on models like Llama 3.1 8B with 18GB memory, or 70B models on a single 24GB GPU using 4-bit quantization. - 25+ PEFT Methods: Includes AdaLoRA, IA3, Prefix Tuning, Prompt Tuning, DoRA, and LoftQ with guidance on rank, alpha, and target module selection per architecture. - Multi-Adapter Serving: Load, switch, merge, and compose multiple adapters at runtime, with integration patterns for TRL, Axolotl, and vLLM. - Use Case: Fine-tune Llama 3.1 8B on the Dolly-15k instruction dataset with LoRA rank 16, producing a 6MB adapter instead of a 16GB full model checkpoint. ## Quick Start Fine-tune a Llama 3.1 8B model on my instruction dataset using LoRA with rank 16 and save the resulting adapter.