Back to list
Lv.2

LoRA (Low-Rank Adaptation)

Low-Rank Adaptation

A technique for efficiently fine-tuning AI models.

In Simple Terms

LoRA is a technique that builds on an AI's existing knowledge to efficiently teach it something new in a specific area. For example, you can train an image-generating AI to learn the distinctive features of a particular character. Since you don't need to rebuild the entire AI from scratch, fine-tuning is possible even with limited data or a less powerful computer. On top of that, the resulting adapter files are very small, making them easy to share.

Behind the Name

LoRA stands for Low-Rank Adaptation. "Low" describes the rank itself being low — "Rank" refers to the mathematical rank, a number representing how much information is compressed into a matrix — and "Adaptation" means adjusting to fit a new task. The name reflects how it works: instead of rewriting the entire AI, it adds small, compact components on top.

Take a Closer Look!

LoRA is a technique for efficiently fine-tuning large AI models.
Traditional AI training typically requires enormous computational resources, but LoRA dramatically reduces that overhead.
This makes it possible for individuals to customize large AI models for specific purposes.

In simple terms, the idea is to keep the AI's original weights — the core of its knowledge — frozen, and attach a small set of additional calculations alongside them to capture what the model learns.
These added components are built from mathematically compressed "low-rank" matrices that efficiently represent only the weight updates, significantly reducing the memory usage and number of trainable parameters needed.
The key insight is that only the necessary differences are layered on top, without disturbing the original AI's foundation.

With LoRA, it becomes easy to fine-tune an AI to draw a specific character or adopt a particular speaking style.
Because the original AI is left unchanged, you can also swap in different LoRA modules for different purposes.
The resulting adapter files are also very small, making them well-suited for sharing and distributing online.

CategoryAI