đ rank1-0.5b: Test-Time Compute for Reranking in Information Retrieval
rank1 is a reasoning reranker model that makes relevance judgments after "thinking". This 0.5B parameter model is trained from the Qwen2.5-0.5B base model. It uses test-time compute to generate reasoning chains before deciding if a document is relevant to a query.
đ Quick Start
rank1 introduces a novel approach to information retrieval by generating explicit reasoning chains before making relevance judgments. Unlike traditional rerankers that directly output scores, rank1:
- Receives a query and document pair
- Generates a reasoning chain within a
<think>...</think>
section
- Makes a binary relevance judgment (
true
or false
)
- Returns a confidence score based on the logits of the true/false tokens
This approach helps the model break down complex relevance decisions into logical steps, improving performance across diverse retrieval tasks.
⨠Features
Model Family
Property |
Details |
Model Type |
rank1-0.5b, rank1-1.5b, rank1-3b, rank1-7b, rank1-14b, rank1-32b, rank1-mistral-2501-24b, rank1-llama3-8b |
Base Model |
Qwen2.5-0.5B, Qwen2.5-1.5B, Qwen2.5-3B, Qwen2.5-7B, Qwen2.5-14B, Qwen2.532B, Mistral-Small 2501 24B, Llama 3.1 8B |
Description |
Current model (0.5B parameters), Larger variant (1.5B parameters), Larger variant (3B parameters), Larger variant (7B parameters), Larger variant (14B parameters), Largest variant (32B parameters), Trained from Mistral base, Trained from Llama 3.1 base |
Quantized Variants
Associated Data and Resources
đĻ Installation
Please see the Github for detailed installation instructions.
đģ Usage Examples
Basic Usage
Note that official usage is found on the Github and accounts for edge cases. But for simple use cases the minimal example below works.
Click to expand: Minimal example with vLLM
from vllm import LLM, SamplingParams
import math
model = LLM(
model="jhu-clsp/rank1-0.5b",
tensor_parallel_size=1,
trust_remote_code=True,
max_model_len=16000,
gpu_memory_utilization=0.9,
dtype="float16",
)
sampling_params = SamplingParams(
temperature=0,
max_tokens=8192,
logprobs=20,
stop=["</think> true", "</think> false"],
skip_special_tokens=False
)
def create_prompt(query, document):
return (
"Determine if the following passage is relevant to the query. "
"Answer only with 'true' or 'false'.\n"
f"Query: {query}\n"
f"Passage: {document}\n"
"<think>"
)
query = "What are the effects of climate change?"
document = "Climate change leads to rising sea levels, extreme weather events, and disruptions to ecosystems. These effects are caused by increasing greenhouse gas concentrations in the atmosphere due to human activities."
prompt = create_prompt(query, document)
outputs = model.generate([prompt], sampling_params)
output = outputs[0].outputs[0]
text = output.text
final_logits = output.logprobs[-1]
from transformers import AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained("jhu-clsp/rank1-0.5b")
true_token = tokenizer(" true", add_special_tokens=False).input_ids[0]
false_token = tokenizer(" false", add_special_tokens=False).input_ids[0]
true_logit = final_logits[true_token].logprob
false_logit = final_logits[false_token].logprob
true_score = math.exp(true_logit)
false_score = math.exp(false_logit)
relevance_score = true_score / (true_score + false_score)
print(f"Reasoning chain: {text}")
print(f"Relevance score: {relevance_score}")
Advanced Usage
rank1 is compatible with the MTEB benchmarking framework:
from mteb import MTEB
from rank1 import rank1
model = rank1(
model_name_or_path="jhu-clsp/rank1-0.5b",
num_gpus=1,
device="cuda"
)
evaluation = MTEB(tasks=["NevIR"])
results = evaluation.run(model)
đ Documentation
rank1-0.5b demonstrates strong performance on retrieval benchmarks, particularly on tasks requiring complex reasoning. The model's ability to "think through" relevance decisions makes it especially effective for nuanced topics.
For specific benchmark results and comparisons with other models, please refer to the paper and the official GitHub repository.
đ License
MIT License
Citation
If you use rank1 in your research, please cite our work:
@misc{weller2025rank1testtimecomputereranking,
title={Rank1: Test-Time Compute for Reranking in Information Retrieval},
author={Orion Weller and Kathryn Ricci and Eugene Yang and Andrew Yates and Dawn Lawrie and Benjamin Van Durme},
year={2025},
eprint={2502.18418},
archivePrefix={arXiv},
primaryClass={cs.IR},
url={https://arxiv.org/abs/2502.18418},
}