jinaai_jina-reranker-v3
jinaai · View on Hugging Face ↗
Model card
The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.
pipeline_tag: text-ranking tags:
- transformers
- reranker
- qwen3 language:
- multilingual base_model:
- Qwen/Qwen3-0.6B inference: false license: cc-by-nc-4.0 library_name: transformers
jina-reranker-v3: Listwise Document Reranker for SOTA Multilingual Retrieval
Blog | API | AWS | Azure | GCP | Arxiv | Successor: v3.5
[!IMPORTANT] Prefer
jina-reranker-v3.5for new projects — it is a drop-in upgrade with stronger domain / multilingual / structured rankings and faster listwise inference. Same API; switch the model id fromjinaai/jina-reranker-v3tojinaai/jina-reranker-v3.5.
[!TIP] GGUF with quantizations and MLX versions are now available.
jina-reranker-v3 is a 0.6B parameter multilingual document reranker with a novel last but not late interaction architecture. Unlike ColBERT's separate encoding with multi-vector matching, this model performs causal self-attention between query and documents within the same context window, extracting contextual embeddings from the last token of each document.
Built on Qwen3-0.6B with 28 transformer layers and a lightweight MLP projector (1024→512→256), it processes up to 64 documents simultaneously within 131K token context. The model achieves state-of-the-art BEIR performance with 61.94 nDCG@10 while being 10× smaller than generative listwise rerankers.
| Model | Size | BEIR | MIRACL | MKQA | CoIR |
|---|---|---|---|---|---|
| jina-reranker-v3 | 0.6B | 61.94 | 66.83 | 67.92 | 70.64 |
| jina-reranker-v2 | 0.3B | 57.06 | 63.65 | 67.90 | 56.14 |
| jina-reranker-m0 | 2.4B | 58.95 | 66.75 | 68.19 | 63.55 |
| bge-reranker-v2-m3 | 0.6B | 56.51 | 69.32 | 67.88 | 36.28 |
| mxbai-rerank-base-v2 | 0.5B | 58.40 | 55.32 | 64.24 | 65.71 |
| mxbai-rerank-large-v2 | 1.5B | 61.44 | 57.94 | 67.06 | 70.87 |
| Qwen3-Reranker-0.6B | 0.6B | 56.28 | 57.70 | 65.34 | 65.18 |
| Qwen3-Reranker-4B | 4.0B | 61.16 | 67.52 | 67.52 | 73.91 |
| jina-code-embeddings-0.5b | 0.5B | - | - | - | 73.94 |
Usage
Local Inference
Use transformers for local inference:
Installation:
pip install transformers
Load the model:
from transformers import AutoModel
model = AutoModel.from_pretrained(
'jinaai/jina-reranker-v3',
dtype="auto",
trust_remote_code=True,
)
model.eval()
Rank documents:
query = "What are the health benefits of green tea?"
documents = [
"Green tea contains antioxidants called catechins that may help reduce inflammation and protect cells from damage.",
"El precio del café ha aumentado un 20% este año debido a problemas en la cadena de suministro.",
"Studies show that drinking green tea regularly can improve brain function and boost metabolism.",
"Basketball is one of the most popular sports in the United States.",
"绿茶富含儿茶素等抗氧化剂,可以降低心脏病风险,还有助于控制体重。",
"Le thé vert est riche en antioxydants et peut améliorer la fonction cérébrale.",
]
# Rerank documents
results = model.rerank(query, documents)
# Results are sorted by relevance score (highest first)
for result in results:
print(f"Score: {result['relevance_score']:.4f}")
print(f"Document: {result['document'][:100]}...")
print()
# Output:
# Score: 0.2976
# Document: Green tea contains antioxidants called catechins that may help reduce inflammation and protect ce...
#
# Score: 0.2258
# Document: 绿茶富含儿茶素等抗氧化剂,可以降低心脏病风险,还有助于控制体重。
#
# Score: 0.1911
# Document: Studies show that drinking green tea regularly can improve brain function and boost metabolism.
#
# Score: 0.1640
# Document: Le thé vert est riche en antioxydants et peut améliorer la fonction cérébrale.
API Reference:
model.rerank(
query: str, # Search query
documents: List[str], # Documents to rank
top_n: Optional[int] = None, # Return only top N (default: all)
return_embeddings: bool = False, # Include doc embeddings (default: False)
)
Returns: List of dicts with keys:
document: Original document textrelevance_score: Float score (higher = more relevant)index: Position in input documents listembedding: Document embedding (ifreturn_embeddings=True)
Example with options:
# Get only top 3 results
top_results = model.rerank(query, documents, top_n=3)
# Get embeddings for further processing
results_with_embeddings = model.rerank(query, documents, return_embeddings=True)
API
Use Jina AI's Reranker API for the fastest integration:
curl -X POST \
https://api.jina.ai/v1/rerank \
-H "Content-Type: application/json" \
-H "Authorization: Bearer JINA_API_KEY" \
-d '{
"model": "jina-reranker-v3",
"query": "slm markdown",
"documents": [
...
],
"return_documents": false
}'
Response format:
{
"model":"jina-reranker-v3",
"usage": {
"total_tokens":2813
},
"results":[
{
"index":1,
"relevance_score":0.9310624287463884
},
{
"index":4,
"relevance_score":0.8982678574191957
},
{
"index":0,
"relevance_score":0.890233167219021
},
...
]
}
Citation
If you find jina-reranker-v3 useful in your research, please cite our technical report:
@misc{wang2025jinarerankerv3lateinteractiondocument,
title={jina-reranker-v3: Last but Not Late Interaction for Document Reranking},
author={Feng Wang and Yuqing Li and Han Xiao},
year={2025},
eprint={2509.25085},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2509.25085},
}
License
jina-reranker-v3 is listed on AWS & Azure. If you need to use it beyond those platforms or on-premises within your company, note that the model is licensed under CC BY-NC 4.0. For commercial usage inquiries, feel free to contact us.
Magnet link
Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:
magnet:?xt=urn:btih:973e7e11870eaa7bc0ba0459d2ef7d6cc2637fc7&dn=jinaai_jina-reranker-v3Open magnet in torrent client · infohash 973e7e11870eaa7bc0ba0459d2ef7d6cc2637fc7
Files & hashes
| Path | Size | sha1 | sha256 |
|---|---|---|---|
| README.md | 6.8 KB (6,955 B) | eb076f293950f4850801670febad17a2ab9928ed | d1ab4558cb180b462140d38eb67305aa86f868d30fa094f7744147a11bb4809e |
| added_tokens.json | 795 B (795 B) | 88caf7b38f31117f8a9531f32f48cd8535564c37 | 7e57ca349de401cc35df7a7f04f6202f444ffaeb9ee83a5c1709f87bc99bf01b |
| config.json | 828 B (828 B) | ae0ec50c9b64ca354ba8d376749704af72ea2411 | 625aea6b08e6062e334c4a5009af01ba50140d2d3994084f6f1b05c67dadf98a |
| generation_config.json | 202 B (202 B) | 66931f13d4291da1e362ac2ac2365c157c327cef | 4bb63613633138e256b1fa3a1ef653feb34175620f6f92ad8f415b7a9f175be1 |
| merges.txt | 1.6 MB (1,671,853 B) | 31349551d90c7606f325fe0f11bbb8bd5fa0d7c7 | 8831e4f1a044471340f7c0a83d7bd71306a5b867e95fd870f74d0c5308a904d5 |
| model.safetensors | 1.11 GB (1,193,708,120 B) | 6e49fc241d0e16b9745dc661fc25951bfafdca63 | 200d852626fd18ce3f3a97c55b689f1f842031f1488055b4cdcfa274924b8f3d |
| modeling.py | 10.2 KB (10,422 B) | 829e1f611e72a7c60174fe28cb029ee1d49c0239 | d185cdb8ce9b0593f150b5fa1ffc839f2dde1d2c25c7b2524030d77e543b65a7 |
| special_tokens_map.json | 777 B (777 B) | 5db181d71f801f6648ddc9acc2e24d3560365419 | 9c61cd9afb8a31aea657bb51fd6e53d758a1ebb288f284b0b7420cad3e8417e7 |
| tokenizer.json | 10.9 MB (11,423,225 B) | a64bfec9f72cdea2a08e2f9bd31ffa0c47436787 | 4e95945ab0cef486709f760b81efcc7a6e75747f9165d13ead29159737455803 |
| tokenizer_config.json | 10.5 KB (10,723 B) | 3ef92c4049184e21017c3e8c7de88921bfbba453 | 88bbd231e995ec6cadadf7115691703b0376a64e9dae124fd59aa1508ad02ee3 |
| vocab.json | 2.6 MB (2,776,833 B) | 4783fe10ac3adce15ac8f358ef5462739852c569 | ca10d7e9fb3ed18575dd1e277a2579c16d108e32f27439684afa0e10b1440910 |
Cite this release
- Canonical URL
- https://aiseedbank.org/models/jinaai_jina-reranker-v3/
- Slug
- jinaai_jina-reranker-v3
- Infohash
- 973e7e11870eaa7bc0ba0459d2ef7d6cc2637fc7
- License
- cc-by-nc-4.0
- Signing key fingerprint
- 85a3b32c3712427b
Every file carries a locally computed sha256 — verify a download against the signed sums: jinaai_jina-reranker-v3.SHA256SUMS (+ minisign signature).
Provenance
| Upstream repository | jinaai/jina-reranker-v3 |
|---|---|
| Revision (pinned) | d7d7e73b6ea138ced340b83865931b5dfb6c97aa |
| Fetched at | 2026-09-04T01:07:23Z |
| License at fetch | cc-by-nc-4.0 |
| Snapshot tool | huggingface · seedbank 0.1.0 |
Trackers
- udp://announce.aitorrent.org:6969/announce
- http://announce.aitorrent.org:7070/announce
- udp://announce2.aitorrent.org:6970/announce
- http://announce2.aitorrent.org:7071/announce
- udp://tracker.opentrackr.org:1337/announce
- udp://open.demonii.com:1337/announce
- udp://open.stealth.si:80/announce
- udp://exodus.desync.com:6969/announce
- udp://tracker.torrent.eu.org:451/announce
✓ verified · rehash-vs-hf-metadata at 2026-09-04T01:07:35Z
cc-by-nc-4.0non-commercial use only1.13 GB (1,209,610,733 bytes)transformerssafetensorsqwen3feature-extractionrerankertext-rankingcustom_codemultilingualpaper: 2509.25085