Text Ranking
Transformers
Safetensors
multilingual
t5gemma2
text2text-generation
reranker
encoder-decoder
FBNL
Retrieval
RAG
Instructions to use KaLM-Embedding/KaLM-Reranker-V1-Small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use KaLM-Embedding/KaLM-Reranker-V1-Small with Transformers:
# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("KaLM-Embedding/KaLM-Reranker-V1-Small") model = AutoModelForMultimodalLM.from_pretrained("KaLM-Embedding/KaLM-Reranker-V1-Small") - Notebooks
- Google Colab
- Kaggle
File size: 9,102 Bytes
0a6dfa4 2f2cdf1 0a6dfa4 064277f 0a6dfa4 1dcb875 c73f423 1dcb875 c73f423 1dcb875 c73f423 1dcb875 c73f423 1dcb875 0a6dfa4 1dcb875 c73f423 1dcb875 d592a21 1dcb875 0a6dfa4 907df7b 0a6dfa4 39cb97d 0a6dfa4 2f2cdf1 0a6dfa4 2f2cdf1 0a6dfa4 2f2cdf1 0a6dfa4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | ---
language:
- multilingual
base_model:
- google/t5gemma-2-1b-1b
pipeline_tag: text-ranking
datasets:
- KaLM-Embedding/KaLM-embedding-finetuning-data
- Shitao/bge-m3-data
tags:
- reranker
- encoder-decoder
- FBNL
- Retrieval
- RAG
license: apache-2.0
library_name: transformers
---
<h1 align="center">KaLM-Reranker-V1: Fast but Not Late Interaction for Compressed Document Reranking</h1>
<p align="center">
<a href="https://huggingface.co/collections/KaLM-Embedding/lychee-kalm-reranker">
<img src="https://img.shields.io/badge/%F0%9F%A4%97_Collection-Model-ffbd45.svg" alt="HF Collection">
</a>
<a href="https://arxiv.org/abs/2606.22807">
<img src="https://img.shields.io/badge/Paper-KaLM--Reranker--V1-d4333f?logo=arxiv&logoColor=white&colorA=cccccc&colorB=d4333f&style=flat" alt="Paper">
</a>
<a href="https://arxiv.org/abs/2506.20923">
<img src="https://img.shields.io/badge/Paper-KaLM--Embedding-d4333f?logo=arxiv&logoColor=white&colorA=cccccc&colorB=d4333f&style=flat" alt="Paper">
</a>
<a href="https://github.com/KaLM-Embedding">
<img src="https://img.shields.io/badge/GitHub-Code-blue.svg?logo=github&" alt="GitHub Code">
</a>
</p>
We present `KaLM-Reranker-V1`, a fast but not late-interaction (FBNL) reranker that decouples query and passage computation while retaining expressive relevance modeling.
Built on an encoder-decoder architecture, KaLM-Reranker-V1 uses the encoder to pre-encode passages with Matryoshka embedding pooling, while the decoder models the system instruction, user instruction, and query intent; cross-attention then captures relevance between the query context and passage representations.
This design makes KaLM-Reranker-V1 efficient through decoupled passage encoding, yet not late interaction, by preserving rich relevance modeling through cross-attention.
We instantiate KaLM-Reranker-V1 in three sizes, `Nano`, `Small`, and `Large`, with `0.27B`, `1B`, and `4B` activated parameters, respectively.

Extensive experiments on BEIR, MIRACL, and LMEB show that the KaLM-Reranker-V1 series achieves competitive reranking performance compared with strong industrial rerankers while significantly reducing online overhead.
# Model Details
| Models | Activated Params. | Non-Embedding Params. | Embedding Params. | #Layers | Sequence Length | Document Token Dim. | MEP Support | Instruction Aware |
| ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
| [KaLM-Reranker-V1-Nano](https://huggingface.co/KaLM-Embedding/KaLM-Reranker-V1-Nano) | 0.27B | 100M | 168M | 18 | 128K | 640 | 1x-32x | Yes |
| [KaLM-Reranker-V1-Small](https://huggingface.co/KaLM-Embedding/KaLM-Reranker-V1-Small) | 1B | 698M | 302M | 26 | 128K | 1152 | 1x-32x | Yes |
| [KaLM-Reranker-V1-Large](https://huggingface.co/KaLM-Embedding/KaLM-Reranker-V1-Large) | 4B | 3209M | 675M | 34 | 128K | 2560 | 1x-32x | Yes |
# Prompt Template
```python
f"<Document>: {document}"
```
```python
(
f"<bos><start_of_turn>user\n"
f"Judge whether the Document meets the requirements based on the Query and the Instruct provided. Note that the answer can only be \"yes\" or \"no\".\n\n"
f"<Instruct>: {task_instruction}\n"
f"<Query>: {query}<end_of_turn>\n"
f"<start_of_turn>model\n\n\n\n"
)
```

# Evaluation
## BEIR
On BEIR, KaLM-Reranker-V1 achieves state-of-the-art performance, on par with strong industrial models such as the Qwen3-Reranker series.

## MIRACL
On MIRACL, despite not being extensively trained on multilingual data, KaLM-Reranker-V1 still shows excellent reranking performance.

## LMEB
On LMEB, reranking models demonstrate a clear advantage, with even the 0.27B Nano model remaining competitive with 7–12B embedding models.


# Usage
```python
import argparse
from typing import Optional
def optional_positive_int(value: str) -> Optional[int]:
if value.lower() == "none":
return None
try:
parsed = int(value)
except ValueError as error:
raise argparse.ArgumentTypeError(
"must be a positive integer or 'none'"
) from error
if parsed <= 0:
raise argparse.ArgumentTypeError("must be a positive integer or 'none'")
return parsed
def build_parser() -> argparse.ArgumentParser:
parser = argparse.ArgumentParser(
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
)
parser.add_argument(
"--model",
default="KaLM-Embedding/KaLM-Reranker-V1-Small",
help="Hugging Face model ID or local checkpoint path.",
)
parser.add_argument(
"--device",
default=None,
help="Inference device, such as 'cuda', 'cuda:0', or 'cpu'.",
)
parser.add_argument(
"--dtype",
default=None,
choices=("bfloat16", "bf16", "float16", "fp16", "float32", "fp32"),
help="Model parameter dtype. By default, use BF16 on CUDA and FP32 on CPU.",
)
parser.add_argument(
"--batch-size",
type=int,
default=32,
help="Number of query-document pairs scored per inference batch.",
)
parser.add_argument(
"--query-max-length",
type=int,
default=512,
help=(
"Maximum tokens in the raw query before it is inserted into the "
"decoder prompt; prompt tokens are not included in this limit."
),
)
parser.add_argument(
"--reranker-max-length",
type=int,
default=1024,
help=(
"Maximum encoder tokens for '<Document>: {passage}'. This is not a "
"combined query-document context limit."
),
)
parser.add_argument(
"--chunk-size",
type=optional_positive_int,
default=4,
metavar="N|none",
help=(
"Number of encoder token hidden states per mean-pooled chunk; use "
"'none' to disable encoder chunk pooling."
),
)
return parser
def main() -> None:
args = build_parser().parse_args()
from kalm_reranker import KaLMReranker
reranker = KaLMReranker(
args.model,
device=args.device,
dtype=args.dtype,
batch_size=args.batch_size,
query_max_length=args.query_max_length,
max_length=args.reranker_max_length,
chunk_size=args.chunk_size,
)
query = "What is the capital of China?"
documents = [
"The capital of China is Beijing.",
"Gravity attracts bodies toward one another.",
]
instruction = "Given a query, retrieve documents that answer the query."
pairs = [(query, document) for document in documents]
print("scores:", reranker.predict(pairs, instruction=instruction))
print("rankings:", reranker.rank(query, documents, instruction=instruction))
if __name__ == "__main__":
main()
'''
scores: [0.9999822378158569, 3.187565198459197e-06]
rankings: [{'corpus_id': 0, 'score': 0.9999822378158569}, {'corpus_id': 1, 'score': 3.187565198459197e-06}]
'''
```
# Acknowledgements
We sincerely thank `jina-reranker-v3` and `Qwen3-Reranker` for their valuable inspiration and contributions to the reranking community, from which we have learned a lot.
# Citation
If you find this model useful, please consider citing our papers.
```
@misc{zhao2026kalmrerankerv1,
title={KaLM-Reranker-V1: Fast but Not Late Interaction for Compressed Document Reranking},
author={Xinping Zhao and Jiaxin Xu and Ziqi Dai and Xin Zhang and Shouzheng Huang and Danyu Tang and Xinshuo Hu and Meishan Zhang and Baotian Hu and Min Zhang},
year={2026},
eprint={2606.22807},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2606.22807},
}
@inproceedings{zhao2026kalmembeddingv2,
title={KaLM-Embedding-V2: Superior Training Techniques and Data Inspire A Versatile Embedding Model},
author={Xinping Zhao and Xinshuo Hu and Zifei Shan and Shouzheng Huang and Yao Zhou and Xin Zhang and Zetian Sun and Zhenyu Liu and Dongfang Li and Xinyuan Wei and Youcheng Pan and Yang Xiang and Meishan Zhang and Haofen Wang and Jun Yu and Baotian Hu and Min Zhang},
booktitle={The Fourteenth International Conference on Learning Representations},
year={2026},
url={https://openreview.net/forum?id=Y7qzhvWhcz}
}
@misc{hu2025kalmembedding,
title={KaLM-Embedding: Superior Training Data Brings A Stronger Embedding Model},
author={Xinshuo Hu and Zifei Shan and Xinping Zhao and Zetian Sun and Zhenyu Liu and Dongfang Li and Shaolin Ye and Xinyuan Wei and Qian Chen and Baotian Hu and Haofen Wang and Jun Yu and Min Zhang},
year={2025},
eprint={2501.01028},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2501.01028},
}
```
## Contact
If you encounter any issues, feel free to contact us via the email: <zhaoxinping@stu.hit.edu.cn> |