What problem does it solve? Full fine-tuning of 7B-70B parameter LLMs requires 60+ GB of GPU memory, which is out of reach for most consumer hardware. This Skill trains less than 1% of model parameters using LoRA, QLoRA, and other adapter methods, producing 6MB adapter files instead of 14GB full model checkpoints. ## Core Features & Use Cases - LoRA and QLoRA Fine-Tuning: Train adapters on consumer GPUs, including 70B models on a single 24GB GPU via 4-bit quantization. - Multi-Adapter Serving: Load, switch, and merge multiple task-specific adapters on one base model at runtime. - Framework Integration: Works with TRL SFTTrainer, Axolotl YAML configs, and vLLM for adapter-based inference. - Use Case: Fine-tune Llama 3.1 8B on the Dolly-15k instruction dataset with rank-16 LoRA on an RTX 4090, then merge the adapter and deploy the model through vLLM. ## Quick Start Fine-tune Llama 3.1 8B with a rank-16 LoRA adapter on my instruction dataset and save only the adapter weights.