Zenaique
Glossary · Training

LoRA (Low-Rank Adaptation)

Also known as: Low-Rank Adaptation, PEFT

Fine-tune by training small low-rank update matrices instead of every weight: same quality, ~1% of the cost.

A parameter-efficient fine-tuning method that injects trainable low-rank matrices into frozen model layers. Reduces GPU memory and training cost by 10-100x while achieving near-full fine-tuning quality.

In practice

The default fine-tuning approach for cost-conscious teams. Expect questions on rank choice, target modules, and merging adapters at inference.

How it compares

LoRA is a parameter-efficient variant of fine-tuning; full FT updates every weight.

Comparisons that include LoRA (Low-Rank Adaptation)

Related topics

Related terms