Home › Certifications › NVIDIA NCA Gen AI LLMs › Experimentation — Fine-Tuning and Alignment
36 multiple-choice questions and 15 flashcards on Experimentation — Fine-Tuning and Alignment, about 12% of the NVIDIA NCA Gen AI LLMs bank. Every one carries a written rationale.
Experimentation — Fine-Tuning and Alignment is one of 8 chapters in CoStudy's NVIDIA NCA Gen AI LLMs bank, and it holds 36 of the bank's 310 multiple-choice questions — roughly 12% of the total. That proportion is not arbitrary: chapters follow the certifying body's published exam outline, and the number of questions in each is set by that domain's published weight, so the share of your practice time this chapter takes matches the share of the real exam it accounts for.
Studying by chapter is worth doing once you have a diagnostic score. A single overall percentage tells you whether you are close; it does not tell you which domain is dragging. Working a weak chapter in isolation, and re-testing it in isolation, is the fastest way to move a score that has stalled — and it is why the mock exams in CoStudy report by domain rather than as one number.
9 questions drawn from this chapter, with the full rationale shown — the controlling principle behind the right answer, and why each wrong option tempts and fails.
LoRA (Low-Rank Adaptation) does which?
Answer: D — Trains small low-rank matrices inside frozen layers
A) Full fine-tuning is the alternative LoRA avoids. D) Correct — LoRA freezes the base model and trains low-rank decomposition matrices inserted into attention/FFN layers, typically about 0.1–1% of parameters. Lightweight and composable. B/C) Different techniques.
Continued pretraining (a.k.a. domain-adaptive pretraining) is best used when:
Answer: D — You hold large unlabeled in-domain text corpora
D) Domain-adaptive pretraining continues the language modeling objective on bulk in-domain text so the base model absorbs the domain distribution before instruction tuning. A) A small labeled set calls for SFT instead. B) Benchmarking is evaluation, not a training stage. C) Serving is downstream of training entirely.
KTO (Kahneman-Tversky Optimization) is best described as a preference-tuning method that:
Answer: C — Uses unpaired good/bad labels via a prospect-theory loss
C) KTO applies a prospect-theory-inspired utility loss to unpaired desirable/undesirable examples. A) Pairing is exactly the requirement KTO drops. B) The LM head is retained. D) KTO is not restricted to the embedding layer.
QLoRA's principal advantage over standard LoRA is that it:
Answer: A — Trains adapters over a 4-bit quantized frozen base to cut memory
A) Correct — quantizing the frozen base to 4 bits is what lets large models be tuned on a single GPU while adapters train in higher precision. B) Validation discipline is unchanged. C) The update remains low-rank; that is still LoRA. D) The adapters are kept in higher precision precisely so gradients remain usable.
Catastrophic forgetting during fine-tuning is best mitigated by:
Answer: C — Mixing in general data, using PEFT and low learning rates
C) Replaying general-domain data, constraining the update with PEFT or small learning rates, and regularizing toward the base model all limit drift. A) A large learning rate on narrow data accelerates forgetting. B) Skipping evaluation hides the problem rather than mitigating it. D) Shrinking the run limits learning without protecting prior capabilities.
Which sequence describes the most common modern LLM training pipeline from scratch to chat assistant?
Answer: C — Pretraining on unlabeled text, then instruction SFT, then RLHF or DPO alignment
C) Pretrain on broad unlabeled text, then supervised fine-tune on instructions, then align on preferences — that ordering is the standard recipe. A) Reverses pretraining and fine-tuning. B) Puts alignment before the model can even model language. D) Quantization and prompting are deployment steps, not a substitute for alignment.
Which mitigation MOST directly reduces catastrophic forgetting during domain fine-tuning?
Answer: A — Mixing a replay sample of general-domain data into training
A) Correct — replay keeps gradient signal for the original distribution, preserving general ability. B) A higher learning rate accelerates overwriting. C) More epochs on the narrow corpus deepens the specialization. D) Batch size changes gradient noise, not the data distribution being fit.
Which is the BEST description of LoRA adapter merging at deployment?
Answer: A — Base weights and LoRA BA can be merged into one tensor
A) Because the update is a plain additive low-rank product, it can be folded into the base tensor and served with no adapter overhead — at the cost of easy multi-adapter swapping. B) Separation is optional, not required. C) Merging is arithmetic and needs no retraining. D) Prefix tuning is a different PEFT family.
Instruction tuning is BEST characterized as supervised training that:
Answer: D — Teaches a base model to follow task directions given as prompts
D) Correct — instruction tuning pairs directions with desired responses so the base model learns the instruction-following format. A) That describes RLHF with PPO. B) That describes distillation. C) That describes continued pretraining, which is unlabeled.
4 cards from the 15 in this chapter.
LoRA (Low-Rank Adaptation)?
Insert low-rank matrices into transformer layers. Train only those (~0.1-1% of params). Lightweight + composable.
What does QLoRA add to LoRA, and why does that combination work?
QLoRA quantizes the frozen base model to 4-bit and trains LoRA adapters in higher precision on top of it, with gradients backpropagated through the quantized weights. Base weights are never updated so their quantization error is fixed and harmless, while the small high-precision adapters carry all the learning — cutting fine-tuning memory enough to tune large models on a single GPU.
Instruction tuning?
Supervised fine-tuning on (instruction, response) pairs. Aligns base model to follow instructions.
Catastrophic forgetting?
Fine-tuning on narrow domain causes loss of general capabilities. Mitigate: lower learning rate, mixed domains, PEFT.
These are a sample. The full Experimentation — Fine-Tuning and Alignment chapter runs 51 items with per-chapter progress tracking, on the web and in the iOS app.
Open NVIDIA NCA Gen AI LLMs in CoStudy →