Beyond LoRA: Can you beat the most popular fine-tuning technique?
02:00 · June 18, 2026 · Hugging Face Blog

Summary
The article examines whether LoRA remains the strongest parameter-efficient fine-tuning approach by comparing it against more than a dozen other methods implemented in the Hugging Face PEFT library, including OFT, BEFT, Lily, and several DoRA variants. All experiments run under identical conditions on the same base models, datasets, and hardware, measuring test accuracy, peak VRAM consumption, checkpoint size, training runtime, and concept drift or forgetting. Two tasks anchor the evaluation: an LLM math-reasoning benchmark that fine-tunes a non-instruction-tuned model on chain-of-thought problems, and an image-generation benchmark that teaches a diffusion model a new visual concept and tests generalization to unseen prompts.
Results show clear trade-offs rather than a single winner. On the math task, rank-stabilized LoRA reaches 53.2 % accuracy at 22.6 GB VRAM and lies on the Pareto frontier, yet BEFT uses only 20.2 GB at the cost of lower accuracy while Lily improves accuracy to 54.9 % at higher memory. Standard LoRA without these modifications performs noticeably worse. On the image-generation task, OFT strictly dominates vanilla LoRA, delivering higher Dino similarity (0.708 vs. 0.697) at lower peak memory (9.01 GB vs. 9.97 GB). Additional tracked metrics—checkpoint size and wall-clock time—shift the frontier further, so the preferred method depends on the production constraint.
The library also supplies practical tooling that reduces the cost of switching methods. A unified configuration API lets users change the adapter type with a single line, and a new conversion utility transforms non-LoRA adapters into LoRA format for downstream inference engines such as vLLM. Quantization support is retained across the tested methods, preserving the memory savings that originally motivated PEFT. The benchmarks therefore function less as a ranking and more as a decision surface that practitioners can query against their own accuracy, memory, and latency requirements.
Why it matters
Directly addresses ML Engineers' needs for parameter-efficient fine-tuning with concrete benchmarks on accuracy-vs-memory trade-offs, VRAM constraints, and MLOps considerations that Dutch teams can apply immediately via the open-source PEFT library.





