C_AIG_2412 · Question #55
Which technique is used to supply domain-specific knowledge to an LLM?
The correct answer is A. Domain-adaptation training. Domain-adaptation training (A) is the technique of continuing to train a pre-trained LLM on domain-specific corpora (medical texts, legal documents, code, etc.), embedding that knowledge directly into the model's weights so it becomes intrinsically "aware" of the domain. Why…
Question
Which technique is used to supply domain-specific knowledge to an LLM?
Options
- ADomain-adaptation training
- BPrompt template expansion
- CRetrieval-Augmented Generation
- DFine-tuning the model on general data
How the community answered
(38 responses)- A84% (32)
- B3% (1)
- C8% (3)
- D5% (2)
Explanation
Domain-adaptation training (A) is the technique of continuing to train a pre-trained LLM on domain-specific corpora (medical texts, legal documents, code, etc.), embedding that knowledge directly into the model's weights so it becomes intrinsically "aware" of the domain.
Why the distractors are wrong:
- B. Prompt template expansion structures how inputs are formatted but adds no new knowledge to the model - it just shapes what the model already knows.
- C. Retrieval-Augmented Generation (RAG) supplies domain knowledge at inference time via external retrieval, rather than training it into the model itself - it's a runtime augmentation, not a training technique.
- D. Fine-tuning on general data trains on broad, non-domain content, which improves general capability but actively avoids supplying domain-specific knowledge.
Memory tip: Think of domain-adaptation training as teaching the model a specialty - like sending a doctor to medical school. RAG, by contrast, is like giving that doctor a reference book to consult during a consultation; the book isn't "in" the doctor, it's looked up on demand. The exam question asks what gets the knowledge into the LLM, which points to training (A).
Topics
Community Discussion
No community discussion yet for this question.