CoolFace
Modelpublic

zeroentropy/zerank-1-small-reranker

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
66likes44kdownloads
Model Card

<img src="https://i.imgur.com/oxvhvQu.png"/>

Releasing zeroentropy/zerank-1-small

In search enginers, rerankers are crucial for improving the accuracy of your retrieval system.

This 1.7B reranker is the smaller version of our flagship model zeroentropy/zerank-1. Though the model is over 2x smaller, it maintains nearly the same standard of performance, continuing to outperform other popular rerankers, and displaying massive accuracy gains over traditional vector search.

We release this model under the open-source Apache License 2.0, in order to support the open-source community and push the frontier of what's possible with open-source models.

Model Details

PropertyValue
Parameters1.7B
Context Length32,768 tokens (32k)
Base ModelQwen/Qwen3-4B
LicenseApache-2.0

How to Use

python
from sentence_transformers import CrossEncoder

model = CrossEncoder("zeroentropy/zerank-1-small", trust_remote_code=True)

query_documents = [
    ("What is 2+2?", "4"),
    ("What is 2+2?", "The answer is definitely 1 million"),
]

scores = model.predict(query_documents)
print(scores)

The model can also be inferenced using ZeroEntropy's /models/rerank endpoint.

Evaluations

NDCG@10 scores between zerank-1-small and competing closed-source proprietary rerankers. Since we are evaluating rerankers, OpenAI's text-embedding-3-small is used as an initial retriever for the Top 100 candidate documents.

TaskEmbeddingcohere-rerank-v3.5Salesforce/Llama-rank-v1**zerank-1-small**zerank-1
Code0.6780.7240.6940.7300.754
Conversational0.2500.5710.4840.5560.596
Finance0.8390.8240.8280.8610.894
Legal0.7030.8040.7670.8170.821
Medical0.6190.7500.7190.7730.796
STEM0.4010.5100.5950.6800.694

<img src="https://cdn-uploads.huggingface.co/production/uploads/67776f9dcd9c9435499eafc8/2GPVHFrI39FspnSNklhsM.png" alt="Description" width="400"/> <img src="https://cdn-uploads.huggingface.co/production/uploads/67776f9dcd9c9435499eafc8/dwYo2D7hoL8QiE8u3yqr9.png" alt="Description" width="400"/>

License

This model is licensed under the Apache License 2.0.