Identify AI concepts and capabilities1 / 5
A company wants the model's answers to reflect private documents and recent information that was not in the model's training data, without retraining the model. Which approach directly addresses this and helps reduce hallucinations?
CorrectIncorrect
Alex
A language model only knows what was in its training data at the time it was trained, so it cannot know your private documents or anything that changed since. Retrieval-augmented generation, usually shortened to RAG, fixes that without touching the model's weights: at question time the application searches an index over your own source content, pulls back the passages that look relevant, and inserts them into the prompt alongside the user's question. The model then answers from material it can actually see, which is why the same technique that solves the stale-and-private-data problem also cuts down on invented answers.
The other options each turn a knob without adding knowledge. Raising the temperature makes sampling more random, which produces more invention rather than less. Shrinking the context window would shorten answers and, worse, leave less room for the retrieved passages. Disabling the tokenizer is not a supported operation and says nothing about which facts the model can reach.
Exam tip: when a scenario pairs our own documents or recent information with the phrase without retraining, the intended answer is retrieval, not fine-tuning and not a decoding parameter.
Sourcelearn.microsoft.com
Follow-up answers are available in the app. Create a free account — no credit card required.
Question 1 of 5
Create a free account