Artificial Intelligence

Reranking

A second-stage ranking process that takes initial search results and reorders them using a more sophisticated model. Reranking improves precision by applying deeper analysis to a smaller candidate set.

Why It Matters

Reranking dramatically improves RAG quality. A cheap, fast retrieval step gets candidates, then an expensive, accurate reranker finds the truly relevant ones.

Example

Initial retrieval returns 100 documents, then a cross-encoder reranker scores each one more carefully and reorders them, surfacing the 5 most relevant to the top.

Think of it like...

Like a hiring process with resume screening (initial retrieval) followed by interviews (reranking) — the first pass narrows the field, the second identifies the best candidates.

Related Terms