peft
AI, ML & GenAI interview questions tagged peft, across every topic.
6 questions · 0 unlocked for you
Concepts behind "peft"
The curriculum that explains the ideas these questions test.
Core
LoRA and Parameter-Efficient Fine-TuningFull fine-tuning updates all of a model's weights, costly in compute and memory and leaving a full-size copy per task. LoRA freezes the base model and trains small low-rank adapter matrices, dropping trainable parameters by orders of magnitude while matching most of full fine-tuning's quality. QLoRA layers on 4-bit base quantization to fit huge models on one GPU. AI, ML, and GenAI interviews probe it because PEFT is how teams actually fine-tune, and because LoRA adapters make serving hundreds of variants cheap.🧠 Foundations of LLMs & GenAISign in
Core
Multi-LoRA ServingLoRA adapters are tiny weight deltas layered on a shared base model, so you can serve hundreds of fine-tuned variants from one set of base weights rather than one full model per tenant. The serving challenge is batching requests that use different adapters in the same forward pass, moving adapters in and out of GPU memory on demand, and reusing the base model's KV cache machinery. AI, ML, and GenAI engineer interviews probe it because it is the economics behind per-tenant and per-task customization and the serving-side complement to LoRA training.🖥️ ML Infrastructure & ServingSign in
