Re-ranking with Cross-Encoders for Better AI Database Retrieval
Re-ranking with cross-encoders is a practical way to improve the precision of AI database search without asking the…
Read moreKnowledge Base
Structured articles covering everything from core concepts to production operations.
Re-ranking with cross-encoders is a practical way to improve the precision of AI database search without asking the…
Read moreVoronoi cells are one of the simplest ways to understand how many vector indexes make search faster: a…
Read moreRecall@K measures how many of the true top K nearest neighbors a vector search index returns for a…
Read moreApproximate nearest neighbor indexes trade some search accuracy for speed because they avoid comparing a query vector with…
Read morek-nearest neighbours, often shortened to k-NN, is the retrieval operation that finds the k stored items most similar…
Read moreMaximum Inner Product Search, usually shortened to MIPS, is the task of finding the stored vectors that produce…
Read moreACORN is a filtered vector search approach designed to keep graph-based nearest neighbor search fast when metadata filters…
Read moreFiltered approximate nearest neighbor search is the problem of finding the most similar vectors while also honoring metadata…
Read moreHNSW and IVF are two common ways to make vector search fast without scanning every embedding. HNSW is…
Read moreA flat, or brute-force, index is the simplest way to perform vector search: store every vector as-is, compare…
Read more