179 questions
No questions match those filters.
Retrieval wants top-k raised from 5 to 20 for recall. E...
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 plansThe conflict between the retrieval team and the evaluation team is a classic trade-off. Increasing k improves recall, which helps with missing information, but it also increases the number of potential conflict pairs, which degrades generation accuracy and increases latency.
To resolve this, decouple the retrieval stage from the generation stage. Retrieve a larger candidate set (e.g., 50), use a reranker to select the most relevant passages, and then feed a smaller, high-quality subset (e.g., 5) to the generator. This maximizes recall while minimizing the generation of contradictory or irrelevant content.