LAMAR is a 600m-parameter multilingual cross-encoder reranker designed for language-aware multilingual retrieval. It jointly considers semantic relevance and language coherence, producing rankings that preserve topical relevance while accounting for language consistency between the query and the retrieved document.
Language-aware reranking: Jointly optimizes semantic relevance and query-document language coherence.
Multilingual coverage: Trained on 51 languages and evaluated on 31 languages.
Strong language-coherence performance: Achieves the best performance among the compared models on a language-coherence evaluation using oracle subsets from multilingual parallel datasets.
General multilingual reranking: Delivers competitive performance across MIRACL, XGLUE, HUME, MLDR, and Wikipedia reranking benchmarks.
LAMAR is initialized from BAAI/bge-m3-retromae and trained in two stages. The first stage performs English-anchored multilingual relevance alignment using relevance scores from Qwen/Qwen3-Reranker-4B. The second stage applies language-coherence training to account for consistency between the query and document languages.
The figure below shows nDCG@1 for the six languages shared by XQuAD and BELEBELE: ar, de, en, ru, vi, and zh.
Language-wise nDCG@1 results on XQuAD and BELEBELE
The XQuAD and BELEBELE evaluation subsets consist of parallel gold documents in 12 and 14 languages, respectively. For each query, we evaluate whether the document written in the same language as the query is ranked first. The full language lists and results across all languages are reported in the Language-Coherence Evaluation section below.
LAMAR is intended for the following multilingual retrieval settings:
Multilingual retrieval
Cross-lingual retrieval
Multilingual retrieval-augmented generation
Retrieval settings that jointly consider document relevance and query-document language coherence
Multilingual search systems that need to account for document in the query language
Usage
Sentence Transformers
python
1# pip install -U sentence-transformers23from sentence_transformers import CrossEncoder
45model = CrossEncoder("nlpai-lab/LAMAR-600m")67query ="프랑스의 수도는 어디인가요?"8documents =[9# Positive (ko)10"프랑스의 수도는 파리이며, 프랑스 북중부의 센강을 따라 자리하고 있습니다.",11# Positive (en)12"The capital of France is Paris, located along the Seine River in the north-central part of the country.",13# Negative (ko)14"데이터베이스 인덱스는 조회 속도를 높일 수 있지만, 지나치게 많으면 데이터 삽입과 갱신 비용이 증가합니다.",15# Negative (en)16"Database indexes can accelerate queries, but too many indexes increase the cost of inserting and updating records.",17]1819rankings = model.rank(query, documents, return_documents=True)2021for result in rankings:22print(f"Score: {result['score']:.4f}")23print(f"Document: {result['text'][:100]}...")24print()2526# Output:27# Score: 5.790328# Document: 프랑스의 수도는 파리이며, 프랑스 북중부의 센강을 따라 자리하고 있습니다....29#30# Score: 4.991831# Document: The capital of France is Paris, located along the Seine River in the north-central part of the count...32#33# Score: -13.383534# Document: 데이터베이스 인덱스는 조회 속도를 높일 수 있지만, 지나치게 많으면 데이터 삽입과 갱신 비용이 증가합니다....35#36# Score: -13.834737# Document: Database indexes can accelerate queries, but too many indexes increase the cost of inserting and upd...
Transformers
python
1# pip install -U transformers torch23import torch
4from transformers import AutoModelForSequenceClassification, AutoTokenizer
56model_id ="nlpai-lab/LAMAR-600m"7device = torch.device("cuda"if torch.cuda.is_available()else"cpu")89tokenizer = AutoTokenizer.from_pretrained(model_id)10model = AutoModelForSequenceClassification.from_pretrained(model_id).to(device)11model.eval()1213query ="프랑스의 수도는 어디인가요?"14documents =[15# Positive (ko)16"프랑스의 수도는 파리이며, 프랑스 북중부의 센강을 따라 자리하고 있습니다.",17# Positive (en)18"The capital of France is Paris, located along the Seine River in the north-central part of the country.",19# Negative (ko)20"데이터베이스 인덱스는 조회 속도를 높일 수 있지만, 지나치게 많으면 데이터 삽입과 갱신 비용이 증가합니다.",21# Negative (en)22"Database indexes can accelerate queries, but too many indexes increase the cost of inserting and updating records.",23]24pairs =[[query, document]for document in documents]2526inputs = tokenizer(27 pairs,28 padding=True,29 truncation=True,30 max_length=8192,31 return_tensors="pt",32)33inputs ={key: value.to(device)for key, value in inputs.items()}3435with torch.inference_mode():36 scores = model(**inputs).logits.view(-1).float().cpu()3738for index in torch.argsort(scores, descending=True).tolist():39print(f"Score: {scores[index]:.4f}")40print(f"Document: {documents[index][:100]}...")41print()4243# Output:44# Score: 5.790345# Document: 프랑스의 수도는 파리이며, 프랑스 북중부의 센강을 따라 자리하고 있습니다....46#47# Score: 4.991848# Document: The capital of France is Paris, located along the Seine River in the north-central part of the count...49#50# Score: -13.383551# Document: 데이터베이스 인덱스는 조회 속도를 높일 수 있지만, 지나치게 많으면 데이터 삽입과 갱신 비용이 증가합니다....52#53# Score: -13.834754# Document: Database indexes can accelerate queries, but too many indexes increase the cost of inserting and upd...
Input and Output
Input
Type: Query-document text pair
Query: A search query or question
Document: A passage or document candidate
Maximum length: 8,192 tokens for the combined query-document input
Output
Type: Float
Shape: One scalar per query-document pair
Meaning: Raw relevance logit; higher values indicate greater relevance
Languages
LAMAR was trained on the following 51 languages:
ar, bg, bn, ca, cs, da, de, el, en, es, et, fa, fi, tl, fr, gu, he, hi, hr, hu, id, is, it, ja, kn, ko, lt, lv, ml, mr, nl, no, pa, pl, pt, ro, ru, sk, sl, sr, sv, sw, ta, te, th, tr, uk, ur, vi, zh, zu
Evaluation
The following tables report evaluation results for reranking models. The multilingual reranking evaluation was conducted using MMTEB.
Evaluation setting
Datasets
Language-Coherence Evaluation
XQuAD and BELEBELE
MMTEB Reranking Evaluation
MIRACL, XGLUE, HUME, MLDR, and Wikipedia Reranking
Language-Coherence Evaluation
We evaluate language coherence using XQuAD and BELEBELE, two multilingual parallel datasets. Each evaluation subset consists of corresponding gold documents across multiple languages. Language coherence is measured by whether the reranker ranks the document in the query language first.
XQuAD (12):ar, de, el, en, es, hi, ro, ru, th, tr, vi, zh
Wikipedia Reranking (16):bg, bn, cs, da, de, en, fa, fi, hi, it, nl, no, pt, ro, sr, sv
We report nDCG@10 on MIRACL, XGLUE, HUME, MLDR, and Wikipedia Reranking.
Model
MIRACL
XGLUE
HUME
MLDR
Wikipedia
Avg
gte-multi-reranker-base
67.34
76.27
94.23
98.81
92.11
85.75
jina-reranker-v2-base-multi
67.86
76.77
93.41
86.17
93.96
83.63
bge-reranker-v2-m3
69.15
76.49
94.55
97.40
93.96
86.31
Qwen3-Reranker-0.6B
64.88
76.52
94.60
98.85
94.69
85.91
jina-reranker-v3
68.56
80.69
94.79
93.41
94.83
86.46
Prism-Qwen3.5-Reranker-0.8B
52.11
74.11
94.11
96.35
92.80
81.90
llama-nemotron-rerank-1b-v2
69.23
77.95
96.02
96.42
94.50
86.82
ctxl-rerank-v2-inst-multi-1b
65.80
77.81
93.60
97.37
93.65
85.65
Prism-Qwen3.5-Reranker-2B
56.96
74.80
95.15
96.46
93.79
83.43
bge-reranker-v2-gemma
69.72
76.75
94.21
89.07
94.63
84.88
Qwen3-Reranker-4B
68.88
76.40
95.73
99.39
96.31
87.34
Prism-Qwen3.5-Reranker-4B
58.03
74.96
94.78
97.32
94.28
83.87
zerank-2-reranker
63.31
78.01
96.13
98.03
94.51
86.00
LAMAR (Ours)
69.49
77.03
95.30
97.60
94.79
86.84
MIRACL
Model
ar
bn
de
en
es
fa
fi
fr
hi
id
ja
ko
ru
sw
te
th
yo
zh
Avg
gte-multi-reranker-base
77.8
78.1
53.2
66.4
63.3
58.6
80.2
56.1
65.0
62.2
70.3
69.8
66.3
64.7
79.8
77.3
68.2
54.9
67.3
jina-reranker-v2-base-multi
76.9
80.0
54.6
65.4
64.8
59.8
79.1
55.7
64.2
63.3
70.5
72.7
65.1
67.9
82.6
79.1
66.0
53.9
67.9
bge-reranker-v2-m3
79.2
80.2
56.3
66.0
67.3
61.7
81.2
58.7
68.3
65.4
71.0
69.9
67.4
69.8
79.5
78.7
69.9
54.2
69.1
Qwen3-Reranker-0.6B
76.5
65.0
55.5
65.6
66.9
60.5
79.2
55.7
62.0
62.8
69.2
72.8
64.2
60.9
52.8
77.8
65.4
55.3
64.9
jina-reranker-v3
80.0
79.0
57.0
67.8
66.4
59.2
80.0
56.3
63.3
64.8
72.3
73.3
67.9
65.6
81.2
79.8
64.8
55.7
68.6
Prism-Qwen3.5-Reranker-0.8B
67.8
35.1
47.3
60.3
54.9
48.5
71.5
48.1
18.9
53.8
63.7
63.8
59.7
52.3
32.1
52.1
57.4
51.0
52.1
llama-nemotron-rerank-1b-v2
80.7
77.7
57.0
66.6
67.9
61.2
82.5
57.9
67.2
63.6
72.7
70.9
68.8
68.0
79.6
80.4
67.7
55.9
69.2
ctxl-rerank-v2-inst-multi-1b
79.8
69.1
57.1
68.1
64.8
55.9
81.1
57.6
55.8
64.3
72.5
71.3
68.8
62.5
57.4
78.8
65.0
54.8
65.8
Prism-Qwen3.5-Reranker-2B
70.6
54.1
52.9
61.8
59.7
53.8
75.3
51.8
34.0
55.5
67.1
65.8
61.5
57.4
45.0
52.7
54.7
51.8
57.0
bge-reranker-v2-gemma
80.9
80.6
57.2
67.3
67.7
61.8
82.1
59.0
68.0
62.9
73.6
71.8
68.8
68.8
83.6
80.8
65.9
54.4
69.7
Qwen3-Reranker-4B
81.0
70.7
59.5
70.3
67.2
64.2
83.9
62.0
65.1
64.2
76.2
73.7
69.4
68.2
58.3
81.1
68.3
56.6
68.9
Prism-Qwen3.5-Reranker-4B
71.3
51.4
54.3
62.4
58.4
50.7
77.3
54.4
32.6
55.7
68.4
66.8
64.2
62.3
48.5
55.0
59.8
51.4
58.0
zerank-2-reranker
76.7
68.3
55.0
64.2
61.5
54.8
79.6
55.4
56.6
56.7
70.7
67.0
66.7
58.7
53.7
76.7
63.4
53.6
63.3
LAMAR (Ours)
78.9
79.3
56.6
68.8
66.2
62.5
82.3
59.9
67.8
62.9
71.1
71.1
67.5
68.7
83.1
80.4
68.4
55.4
69.5
Citation
bibtex
1@misc{hong2026lamaropenlanguageawaremultilingual,
2 title={LAMAR: An Open Language-Aware Multilingual Alignment Reranker},
3 author={Seongtae Hong and Youngjoon Jang and Jungseob Lee and Seungyoon Lee and Heuiseok Lim},
4 year={2026},
5 eprint={2607.22042},
6 archivePrefix={arXiv},
7 primaryClass={cs.IR},
8 url={https://arxiv.org/abs/2607.22042},
9}