179 questions
No questions match those filters.
Name a class of questions where turning retrieval on ma...
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansTurning retrieval on degrades performance specifically for questions about high-popularity entities where the base model already possesses accurate parametric knowledge.
The net benefit of retrieval can be expressed mathematically as a rescue term balanced against a harm term: $$\text{Benefit} = (1 - p) \cdot g - p \cdot h$$ where $p$ is the probability that the model gets the query right using parametric memory alone, $g$ is the rescue rate (fixing an otherwise incorrect answer via retrieval), and $h$ is the harm rate (corrupting an otherwise correct answer due to distractor passages or noisy context).
As query entity popularity increases, $p \to 1$. Consequently, the rescue term $(1 - p) \cdot g$ approaches zero, while the harm term $p \cdot h$ remains non-zero. Empirically, forcing retrieval on queries with high parametric accuracy flips roughly 10% of otherwise correct answers to wrong ones.