Apply what you learned
Explain a new case.
These small constructed cases use different values from the guides. Predict the answer, explain why, then check the reasoning. They test a mechanism rather than your memory of a diagram. Answers remain in this page’s memory and are cleared on reload.
6. A correct top-k within the wrong candidates
Exact top-3 IDs are {2, 5, 9}. A partition-pruned search returns {2, 9, 12}, correctly sorted by distance among the candidates it visited. What is recall@3 for this query?
Read the answer key
2/3, because two exact neighbors were recovered. The intersection is {2, 9}, so recall is 2/3. Correct candidate scoring does not recover ID 5 if its partition was never searched. This says nothing about recall on other queries.
Read the related chapter Use the reasoning to explain your answer before trying another case. Find another concept →