



Scoring function used in late interaction models like ColBERT that computes query-document relevance by finding maximum similarity between each query token and document tokens, then summing.
Loading more......
MaxSim (Maximum Similarity) is a scoring function used in late interaction retrieval models like ColBERT. It computes the relevance score between a query and document by finding the maximum similarity between each query token and all document tokens, then summing these maxima.
For each query token:
MaxSim enables fine-grained matching:
While conceptually expensive, MaxSim can be optimized through pre-computed document embeddings and approximate nearest neighbor search.
ColBERT pioneered using MaxSim for dense retrieval, achieving state-of-the-art retrieval performance.
Advantages:
Disadvantages:
Implemented in open-source libraries (ColBERT, Vespa, etc.)