LoRA
LoRA is a parameter-efficient fine-tuning technique that injects and trains small rank-decomposition matrices into a large model to adapt it to new tasks without updating original weights.
Listen to this definition
Uses a voice available on your device
Audio options
On this page 5 sections
Related concepts 4 concepts
What it is
Instead of recomputing the full weight matrix of a model, which might contain billions of parameters, LoRA freezes the original weights and inserts small, trainable adapter layers. These adapters operate on a low-rank decomposition, meaning you only train a tiny fraction of the total parameters, often less than 1%. This reduces the VRAM requirement for training by orders of magnitude. A full model might require 80GB of VRAM to fine-tune, while the equivalent LoRA adapter can often be trained on a single consumer-grade GPU.
Why it matters
Knowing about LoRA changes your approach to model customization from a prohibitive infrastructure task to a lightweight workflow. If you ignore it, you will likely default to paying for expensive, full-parameter fine-tuning or settling for sub-optimal prompt engineering. Using LoRA allows you to maintain dozens of specialized versions of a base model for different customers or use cases while sharing the same underlying base model in production, drastically saving on memory and deployment complexity.
In practice
In your workflow, you load a base model and attach a LoRA adapter file, which is typically a small file in the range of 10MB to 500MB. Most inference engines like vLLM or Hugging Face Transformers support loading these adapters dynamically alongside a base model. You effectively swap adapters on the fly during request routing without reloading the base weights into VRAM.
The tradeoff
The primary tradeoff is that while LoRA adapters are efficient, they may slightly underperform compared to full fine-tuning on complex reasoning tasks, and chaining too many adapters can lead to latency overhead if not managed properly.
Where it appears
Research summaries that use LoRA, each linked to its source paper.
-
Automated Video Editing Through Verifier-Grounded Planning
Plans You Can Check: Verifier-Grounded Learning of an Open-Weight Planner for Executable Video-Editing
The authors introduce a framework for video-editing agents to generate and verify executable edit plans using a self-improving training loop.
-
Detecting Android Rotation Bugs Using AI
RotDroid: Cross-Orientation State Equivalence Testing for Detecting GUI Rotation Bugs in Android Apps
RotDroid uses a vision-language model to detect GUI rotation bugs by comparing visual states between portrait and landscape orientations.
-
Optimizing MedSAM Fine-Tuning for Robustness
When Adaptation Hurts: Connecting Representational Drift to OOD Failures in MedSAM Fine-Tuning
The paper identifies that representational drift in the decoder and output layers significantly impacts out of distribution performance when fine-tuning the MedSAM medical image segmentation foundation model.
-
Selective Safety Routing for Language Models
CLEAR: Continuous Latent Adapter Routing for Utility-Preserving LLM Safety Alignment
The paper introduces a routing mechanism that applies safety interventions only when harmful inputs are detected, preserving model utility for benign prompts.
-
Benchmarking AI Agents at Algorithmic Design
AI4AI-Bench: Benchmarking LLM Agents in Algorithmic Design for Recursive Self-Improvement
The authors introduce AI4AI-Bench to test whether AI agents can improve training algorithms by modifying their core components such as learning rules and supervision signals.
-
Optimizing GPU Kernels Using LLMs
PTXBench: Benchmark and Adapt LLMs for GPU Kernel Optimization with Architecture-specific PTX
The authors introduce PTXBench and a supervised fine-tuning method to help LLMs write efficient architecture-specific GPU code.
-
Optimizing Muon for Low Rank Adapters
Approximate Muon with low-rank adapters
The paper introduces sMuon, an algorithm that enables the use of the Muon optimizer within low rank adaptation techniques to improve fine-tuning performance.
-
Reprogramming Models into Assertive Socratic Assistants
Behavioral Reprogramming of Open-Weights Models: Cognitive Plasticity and Alignment Bounds
The paper demonstrates how to fine-tune open-weights models to shift from passive assistant behaviors to a proactive Socratic persona using targeted parameter-efficient techniques.
-
Streaming Identity Swapping for Talking Videos
UniSwap: Streaming Audio-Visual Identity Swapping for Talking Videos
UniSwap is a framework designed for low-latency, streaming-ready audio-visual identity swapping that preserves source motion and content while replacing appearance and voice.
-
Multimodal AI Agents for Business Ideation
MBA: Multimodal Benchmark and Agents for Real-World Business Ideation
The researchers developed a new benchmark and multimodal agent system that uses visual data to generate more realistic business ideas than text-only alternatives.
-
Improving 3D Vision Models at Runtime
Self-Geometry: GT-Free and Plug-and-Play Test-Time Adaptation for Geometrically Consistent 3D Vision Foundation Models
Self-Geometry is a plug and play pipeline that improves the geometric consistency of pretrained 3D vision foundation models during inference without needing ground truth data.
-
Long Contexts Weaken Model Internal Knowledge
Information Abundance Paradox: Long-Context Training Undermines Parametric Knowledge
The researchers found that training language models on long documents makes them rely more on provided text and less on their own internal knowledge, leading to worse performance when that context is missing.
-
Programmable Backdoor Attacks on Vision Models
Once Poisoned, Arbitrarily Controlled: A Programmable Backdoor in VLMs
The paper introduces a flexible backdoor paradigm that enables dynamic, post-training control over a Vision Language Model output by injecting trigger patterns into training data.
-
Verified Financial LLM Reasoning Benchmark
V-FiLLM: Verified Financial LLM Reasoning Benchmark
The paper introduces a synthetic generation and verification framework called V-FiLLM to benchmark and improve large language model reasoning over structured financial data.
-
Fixing Attribute Hallucinations in Vision Models
When Visual Signals Mislead: A Mechanistic Study of Attribute Hallucination in Vision-Language Models
The paper introduces a diagnostic and remediation framework called VISOR that identifies and corrects attribute hallucination errors in vision-language models by distinguishing between language-layer biases and visual representation failures.
-
Predicting Stocks Using Language Model Tokens
Financial Numerical Prediction and Allocation as Token Generation
Researchers successfully used a single causal language model to perform stock forecasting and portfolio allocation by treating financial data as tokens rather than using traditional task-specific numerical heads.
-
Tool Calls Function Without Image Feedback
Thinking With Tools, Not With Pixels: Tool Calls as Text Scaffolds for Visual Reasoning
Researchers discovered that tool use in vision language models relies on structured text scaffolding rather than the actual images returned by those tools.
-
Optimizing Reasoning and Response Modes in LLMs
Fusion Training for Mathematical Generalization in Large Language Models
The researchers investigated how to balance a model's ability to provide concise answers with its capacity for long-form mathematical reasoning by testing different training schedules and data ratios.
-
Building Open Models for Continual Learning
Macaron-V1: Towards Open Continual Learning with Self-Improvement and Mixture-of-LoRA
Macaron-V1 introduces a framework for deploying persistent agent models that update themselves through specialized adapters and recursive self-improvement loops.
-
Modeling Character State Evolution in Dialogue
PHASE-Tree: Modeling Character-State Evolution in Long-Horizon Role-Playing Dialogue
The paper introduces the PHASE-Tree framework to manage character personality updates across long narrative sequences in role-playing agents.
-
Improving LLM Creativity While Maintaining Alignment
CreativeInstruct: Scalably Teaching LLMs to Balance Quality, Creativity, and Diversity
The CreativeInstruct method introduces a way to fine-tune a single unified model that balances instruction following with narrative diversity by tagging and self-injecting creative text segments.
-
Improving Nordic Language Model Grammatical Accuracy
SAGA: Score-Weighted Adaptive Generation Alignment for Low-Resource Nordic Language Models
The researchers developed SAGA, an automated pipeline that uses linguistic scoring to align language models for low-resource Nordic languages without needing human preference labels.
-
Simulating Diverse Human Behavior with Anacreon
Mind the Gaps: Mixture-of-Minds for Human Simulation
The paper introduces Anacreon, a system that uses specialized adapter modules to prevent large language models from collapsing diverse individual personalities into generic averages.
-
Optimizing Character Animation for Real-Time Applications
Wan-Animate-2: Pushing the Application Boundaries of Character Animation
Wan-Animate-2 introduces a new architecture to solve inefficiencies in character animation by decoupling reference streams and enabling more efficient training.
-
Personalizing AI Writing With LoRA Adapters
Small Is Enough: Per-User Style Rewriting of AI-Edited Text via LoRA Adapters
The paper demonstrates that using LoRA adapters can rewrite AI-generated text to match a specific user's writing style without needing explicit style instructions.
-
Evaluating Language Models on Real Software Issues
SWE-bench: Can Language Models Resolve Real-World GitHub Issues?
The paper introduces SWE-bench, a new benchmark that tests language models on resolving real-world GitHub issues by navigating large repositories and executing unit tests.
-
Context Aware Image Similarity Metrics
The Many Senses of Visual Similarity: A Text-Prompted Image Perceptual Metric
The paper introduces TPIPS, a text-prompted metric that allows developers to calculate image similarity based on specific visual attributes rather than using generic, aspect-agnostic scores.
-
Efficient Fine-Tuning for Large Language Models
LoRA: Low-Rank Adaptation of Large Language Models
The paper introduces Low-Rank Adaptation, a method that freezes pre-trained model weights and trains low-rank decomposition matrices to update models efficiently without introducing inference latency.