PromptForge
AI Glossary

Models & architecture

LoRA

Also known as: low-rank adaptation, qlora

Definition

LoRA (Low-Rank Adaptation) is a fine-tuning method that trains small adapter matrices instead of updating all model weights. It cuts the compute and storage cost of fine-tuning by orders of magnitude.

Rather than modifying billions of parameters, LoRA inserts small low-rank matrices alongside existing weights and trains only those. The resulting adapter is typically megabytes rather than gigabytes.

This has practical consequences beyond cost. Adapters can be swapped at runtime, so one base model can serve many specialised behaviours. You can maintain separate adapters per customer or per task without hosting separate models.

Quality is usually close to full fine-tuning for style and format adaptation, which covers most real use cases.

Related terms

Put this into practice

Understanding the term is step one. Our free courses and tools let you actually use it.