Stages
Reranking
Improve search quality by reordering results with advanced relevance models
The Reranking stage refines search results by applying more sophisticated scoring models to reorder documents based on their relevance to the query.
Overview
Reranking improves search quality by applying a more computationally intensive model to reorder an initial set of search results. While initial retrieval stages like KNN or keyword search focus on recall (finding potentially relevant documents), reranking focuses on precision (sorting results by true relevance). This two-stage approach balances efficiency with accuracy.
Required Inputs
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
query | string | Yes | - | The search query text |
documents | array | Yes | - | Initial set of document IDs or search results to rerank |
model | string | No | ”mixpeek/reranker-v1” | Reranking model to use |
k | integer | No | 10 | Number of top results to return after reranking |
score_threshold | float | No | 0.0 | Minimum relevance score threshold for results |
Configurations
Reranker Types
Type | Description | Use Case |
---|---|---|
cross_encoder | Uses query-document pairs for direct relevance scoring | Highest precision needs |
pointwise | Scores documents individually without comparing them | Faster processing |
listwise | Considers entire result set for optimal ordering | Complex ranking needs |
hybrid | Combines multiple reranking approaches | Balancing precision and recall |
Model Options
Model | Description | Strength |
---|---|---|
mixpeek/reranker-v1 | General-purpose cross-encoder model | Balanced performance |
mixpeek/reranker-domain-v1 | Domain-optimized for specific content types | Industry/domain-specific content |
mixpeek/reranker-multilingual | Optimized for cross-language search | Multi-language content |
custom | User-provided custom reranker model | Specialized use cases |
Configuration Examples
Basic Reranking
Advanced Configuration
Advanced Options
Option | Type | Default | Description |
---|---|---|---|
max_context_length | integer | 512 | Maximum token length for document context |
normalize_scores | boolean | true | Whether to normalize final scores to 0-1 range |
preserve_original_order_weight | float | 0.0 | Weight given to preserving original result order |
batching | boolean | true | Whether to process documents in batches for efficiency |
batch_size | integer | 16 | Number of documents to process in each batch |
Processing Flow
Output Schema
Was this page helpful?