HAKARI-Bench

MNanoBEIR

Overview

MNanoBEIR is the multilingual NanoBEIR group: a grid of compact BEIR-style retrieval tasks across Arabic, German, Spanish, French, Italian, Japanese, Korean, Norwegian, Portuguese, Serbian, Swedish, Thai, and Vietnamese. Each language variant contains the same thirteen source tasks, so the group separates two questions that are often mixed together: whether a model understands the underlying BEIR retrieval relation, and whether that behavior survives in non-English text.

The source task mix is deliberately heterogeneous. Some tasks retrieve duplicate questions, some retrieve Wikipedia evidence, some retrieve biomedical or scientific documents, some retrieve debate arguments, and some retrieve answer-bearing web passages. A single average score is therefore not enough to understand the group. The useful reading is by language, task family, and retrieval profile. BM25 exposes exact-term and named-entity dependence; dense retrieval exposes semantic transfer and paraphrase handling; reranking_hybrid shows where sparse and dense candidates complement each other.

What This Group Measures

BEIR: A Heterogeneous Benchmark for Zero-shot Evaluation of Information Retrieval Models introduced a benchmark philosophy based on many retrieval relations rather than one passage-search task. MNanoBEIR inherits that philosophy from compact NanoBEIR tasks and applies it to multilingual evaluation. The result is a regular 13-by-13 grid: thirteen languages and thirteen BEIR-derived source tasks.

This group measures multilingual robustness under changing relevance semantics. For example, a relevant Quora document should be a duplicate question, a relevant FEVER document should support or refute a claim, a relevant ArguAna document should work as a counterargument, and a relevant SCIDOCS document should be scientifically related. A retriever that treats all rows as generic semantic similarity will miss much of what the group tests.

Task Families

Dataset Shape

MNanoBEIR contains 169 task pages, 8,437 queries, 737,399 split-local documents, and 61,048 positive qrel rows. Each language has 13 task pages and 649 queries: most base tasks have 50 queries, while NanoTouche2020 has 49. The document count is a sum over task-local pools, not a deduplicated multilingual corpus.

The group is highly multi-positive. NanoArguAna and NanoMSMARCO are single-positive in this grid, but NanoDBPedia, NanoNFCorpus, NanoSCIDOCS, and NanoTouche2020 contain many positives per query. This means hit@10 can look good while nDCG@10 or Recall@100 still shows ranking quality differences. Query and document length also vary by task: ArguAna and Touche have long argumentative text, Quora has short question text, NFCorpus has short medical queries and many positives, and FEVER-like tasks depend on claim-evidence alignment.

Retrieval Behavior

BM25 Profile

BM25 is strongest where exact words, named entities, titles, technical terms, or many acceptable positives dominate. In this group, Quora, FEVER, DBPedia, HotpotQA, and some Touche splits often give sparse retrieval a clear path. BM25 is weaker on finance, scientific related-paper retrieval, and some climate evidence tasks where the relevant document may use different wording from the query.

Language differences should not be reduced to script alone. Latin-script European languages can still differ because of translation choices and morphology; Japanese, Korean, Thai, Arabic, Serbian, and Vietnamese introduce additional tokenization and segmentation considerations. A BM25-competitive split is a sign that exact lexical anchoring remains central, not that the task is easy.

Dense Profile

Dense retrieval is the leading nDCG@10 profile for many MNanoBEIR tasks. It is most informative when the target relation depends on paraphrase, answerability, or relatedness rather than direct term overlap. This is visible in duplicate question retrieval, NQ-style passage retrieval, FEVER-style evidence selection, and some finance and scientific tasks.

Dense retrieval can still lose rare exact anchors. Entity-heavy tasks, medical terms, numeric facts, paper titles, and translated names can be underweighted if the embedding model smooths them into broader topical similarity. This makes the BM25-versus-dense comparison useful: it tells whether a task is mainly lexical, mainly semantic, or dependent on both.

Reranking Hybrid Profile

reranking_hybrid is the practical reranker-candidate view of MNanoBEIR. It often performs best when BM25 and dense retrieval find different relevant documents. ClimateFEVER, DBPedia, Touche, SCIDOCS, and several multilingual open-domain QA splits show this complementarity.

When reranking_hybrid is best by nDCG@10, the task is signaling that neither exact matching nor embedding similarity alone is sufficient. When it is not the best top-rank sorter but has stronger Recall@100, it is still useful for reranker experiments because it preserves positives that either first-stage method would otherwise drop.

Language Summary

LanguageTasksQueriesDocsPositivesBM25 nDCG@10Dense nDCG@10Reranking hybrid nDCG@10
ar1364956,7234,6960.44120.48670.4919
de1364956,7234,6960.44760.53130.5099
es1364956,7234,6960.50250.53090.5318
fr1364956,7234,6960.51250.55650.5620
it1364956,7234,6960.48300.53240.5304
ja1364956,7234,6960.46610.51220.5061
ko1364956,7234,6960.44790.49890.5023
no1364956,7234,6960.41970.51400.4756
pt1364956,7234,6960.48160.53340.5311
sr1364956,7234,6960.39440.50320.4841
sv1364956,7234,6960.41840.51700.4899
th1364956,7234,6960.43560.50810.4944
vi1364956,7234,6960.46030.53360.5244

Task Navigation

Base taskFamilyLanguage pages
NanoArguAnaArgument retrievalar, de, es, fr, it, ja, ko, no, pt, sr, sv, th, vi
NanoClimateFEVEREvidence retrievalar, de, es, fr, it, ja, ko, no, pt, sr, sv, th, vi
NanoDBPediaEntity retrievalar, de, es, fr, it, ja, ko, no, pt, sr, sv, th, vi
NanoFEVEREvidence retrievalar, de, es, fr, it, ja, ko, no, pt, sr, sv, th, vi
NanoFiQA2018Open-domain QA retrievalar, de, es, fr, it, ja, ko, no, pt, sr, sv, th, vi
NanoHotpotQAOpen-domain QA retrievalar, de, es, fr, it, ja, ko, no, pt, sr, sv, th, vi
NanoMSMARCOOpen-domain QA retrievalar, de, es, fr, it, ja, ko, no, pt, sr, sv, th, vi
NanoNFCorpusBiomedical retrievalar, de, es, fr, it, ja, ko, no, pt, sr, sv, th, vi
NanoNQOpen-domain QA retrievalar, de, es, fr, it, ja, ko, no, pt, sr, sv, th, vi
NanoQuoraRetrievalDuplicate question retrievalar, de, es, fr, it, ja, ko, no, pt, sr, sv, th, vi
NanoSCIDOCSScientific related-paper retrievalar, de, es, fr, it, ja, ko, no, pt, sr, sv, th, vi
NanoSciFactEvidence retrievalar, de, es, fr, it, ja, ko, no, pt, sr, sv, th, vi
NanoTouche2020Argument retrievalar, de, es, fr, it, ja, ko, no, pt, sr, sv, th, vi

Interpretation Notes for Model Researchers

The strongest use of MNanoBEIR is controlled comparison. Because every language uses the same task grid, score differences can be read as language robustness only after accounting for the task family. A model may be excellent on translated Quora duplicates yet weak on translated finance QA or scientific related-paper retrieval. Family-level breakdowns are therefore more useful than one global average.

Pay special attention to profile changes. BM25-led rows suggest exact strings, entities, or many positives. Dense-led rows suggest paraphrase and semantic answerability. Hybrid-led rows suggest that sparse and dense retrieval recover different useful candidates. For reranker research, reranking_hybrid is often the most relevant candidate pool even when dense has the best top-rank nDCG.

Training and Leakage Notes

Useful training data should be both multilingual and task-matched: translated MS MARCO-style query-passage data for web retrieval, multilingual FEVER-style claim-evidence pairs for fact checking, duplicate-question pairs for Quora-like tasks, argument-counterargument pairs for ArguAna, and biomedical or scientific retrieval data for NFCorpus and SCIDOCS. Mixing all tasks into one generic similarity objective will blur the distinctions this group is designed to test.

Leakage risk is high because the underlying BEIR tasks are common in retrieval training mixtures. Exclude exact MNanoBEIR queries, qrels, positives, translated documents, and direct translations of evaluation text. Audit overlap with MS MARCO, NQ, FEVER, Quora, NFCorpus, SCIDOCS, SciFact, and Touche-style corpora before using them for training or synthetic-data seeding.

Source Reference Table

SourceYearTypeURL
BEIR: A Heterogeneous Benchmark for Zero-shot Evaluation of Information Retrieval Models2021paperhttps://arxiv.org/abs/2104.08663
MMTEB: Massive Multilingual Text Embedding Benchmark2025paperhttps://arxiv.org/abs/2502.13595
NanoBEIR collectiondataset collectionhttps://huggingface.co/collections/zeta-alpha-ai/nanobeir
MTEB benchmarkprojecthttps://github.com/embeddings-benchmark/mteb

Metadata Summary

FieldValue
Task pages169
Queries8,437
Split-local documents737,399
Positive qrels72,319
Languagesar, de, es, fr, it, ja, ko, multilingual, no, pt, sr, sv, th, vi
Categoriesnatural_language
Positives / query avg8.57

Task Metadata Summary

TaskBacking datasetLangCategoryQueriesDocsPositivesBM25 nDCG@10Dense nDCG@10Reranking hybrid nDCG@10Best profile
NanoArguAnaNanoBEIR-ararnatural_language503,635500.36190.42950.4188Dense
NanoArguAnaNanoBEIR-dedenatural_language503,635500.34530.47380.4422Dense
NanoArguAnaNanoBEIR-esesnatural_language503,635500.41330.48080.4365Dense
NanoArguAnaNanoBEIR-frfrnatural_language503,635500.39480.52000.4611Dense
NanoArguAnaNanoBEIR-ititnatural_language503,635500.39340.47060.4138Dense
NanoArguAnaNanoBEIR-jajanatural_language503,635500.36200.42390.4022Dense
NanoArguAnaNanoBEIR-kokonatural_language503,635500.36610.40820.4217Reranking hybrid
NanoArguAnaNanoBEIR-nononatural_language503,635500.30960.39850.3656Dense
NanoArguAnaNanoBEIR-ptptnatural_language503,635500.41310.49180.4474Dense
NanoArguAnaNanoBEIR-srsrnatural_language503,635500.28170.41870.3625Dense
NanoArguAnaNanoBEIR-svsvnatural_language503,635500.31850.41080.3784Dense
NanoArguAnaNanoBEIR-ththnatural_language503,635500.40510.37210.4349Reranking hybrid
NanoArguAnaNanoBEIR-vivinatural_language503,635500.42750.45290.4701Reranking hybrid
NanoClimateFEVERNanoBEIR-ararnatural_language503,4081480.24000.28990.2948Reranking hybrid
NanoClimateFEVERNanoBEIR-dedenatural_language503,4081480.24810.26250.3310Reranking hybrid
NanoClimateFEVERNanoBEIR-esesnatural_language503,4081480.28490.30970.3090Dense
NanoClimateFEVERNanoBEIR-frfrnatural_language503,4081480.30630.31140.3531Reranking hybrid
NanoClimateFEVERNanoBEIR-ititnatural_language503,4081480.27000.33890.3255Dense
NanoClimateFEVERNanoBEIR-jajanatural_language503,4081480.26720.28390.3100Reranking hybrid
NanoClimateFEVERNanoBEIR-kokonatural_language503,4081480.24570.30030.2983Dense
NanoClimateFEVERNanoBEIR-nononatural_language503,4081480.20990.30530.2862Dense
NanoClimateFEVERNanoBEIR-ptptnatural_language503,4081480.26310.25080.2958Reranking hybrid
NanoClimateFEVERNanoBEIR-srsrnatural_language503,4081480.23890.29460.3266Reranking hybrid
NanoClimateFEVERNanoBEIR-svsvnatural_language503,4081480.23880.26330.3202Reranking hybrid
NanoClimateFEVERNanoBEIR-ththnatural_language503,4081480.23680.34440.3015Dense
NanoClimateFEVERNanoBEIR-vivinatural_language503,4081480.26680.35390.3558Reranking hybrid
NanoDBPediaNanoBEIR-ararnatural_language506,0451,1580.52720.52040.5277Reranking hybrid
NanoDBPediaNanoBEIR-demultilingualnatural_language506,0451,1580.57470.61520.6157Reranking hybrid
NanoDBPediaNanoBEIR-esesnatural_language506,0451,1580.61400.60990.6210Reranking hybrid
NanoDBPediaNanoBEIR-frfrnatural_language506,0451,1580.58270.55810.5710BM25
NanoDBPediaNanoBEIR-ititnatural_language506,0451,1580.53390.64270.6069Dense
NanoDBPediaNanoBEIR-jajanatural_language506,0451,1580.58430.60980.6081Dense
NanoDBPediaNanoBEIR-kokonatural_language506,0451,1580.53220.59280.5787Dense
NanoDBPediaNanoBEIR-nononatural_language506,0451,1580.46840.55060.5184Dense
NanoDBPediaNanoBEIR-ptptnatural_language506,0451,1580.51100.58160.5620Dense
NanoDBPediaNanoBEIR-srsrnatural_language506,0451,1580.47040.56930.5567Dense
NanoDBPediaNanoBEIR-svsvnatural_language506,0451,1580.43420.59060.5073Dense
NanoDBPediaNanoBEIR-ththnatural_language506,0451,1580.50430.54680.5482Reranking hybrid
NanoDBPediaNanoBEIR-vivinatural_language506,0451,1580.49490.56760.5628Dense
NanoFEVERNanoBEIR-ararnatural_language504,996570.66650.82430.7767Dense
NanoFEVERNanoBEIR-dedenatural_language504,996570.73620.84490.8004Dense
NanoFEVERNanoBEIR-esesnatural_language504,996570.78030.84270.8029Dense
NanoFEVERNanoBEIR-frfrnatural_language504,996570.74690.81940.7803Dense
NanoFEVERNanoBEIR-ititnatural_language504,996570.77760.79720.7977Reranking hybrid
NanoFEVERNanoBEIR-jajanatural_language504,996570.67970.71410.6482Dense
NanoFEVERNanoBEIR-kokonatural_language504,996570.57230.73350.7001Dense
NanoFEVERNanoBEIR-nononatural_language504,996570.73960.84160.7934Dense
NanoFEVERNanoBEIR-ptptnatural_language504,996570.80430.84610.8511Reranking hybrid
NanoFEVERNanoBEIR-srsrnatural_language504,996570.64860.76110.7191Dense
NanoFEVERNanoBEIR-svsvnatural_language504,996570.75120.85700.8153Dense
NanoFEVERNanoBEIR-ththnatural_language504,996570.70010.86630.7768Dense
NanoFEVERNanoBEIR-vivinatural_language504,996570.61090.83040.6964Dense
NanoFiQA2018NanoBEIR-ararnatural_language504,5981230.31960.39340.3900Dense
NanoFiQA2018NanoBEIR-dedenatural_language504,5981230.18640.39770.2704Dense
NanoFiQA2018NanoBEIR-esesnatural_language504,5981230.32050.38190.4174Reranking hybrid
NanoFiQA2018NanoBEIR-frfrnatural_language504,5981230.34030.38810.4341Reranking hybrid
NanoFiQA2018NanoBEIR-ititnatural_language504,5981230.26330.34430.3405Dense
NanoFiQA2018NanoBEIR-jajanatural_language504,5981230.32880.37620.4041Reranking hybrid
NanoFiQA2018NanoBEIR-kokonatural_language504,5981230.34150.37130.4291Reranking hybrid
NanoFiQA2018NanoBEIR-nononatural_language504,5981230.19550.42050.3330Dense
NanoFiQA2018NanoBEIR-ptptnatural_language504,5981230.26210.38530.3478Dense
NanoFiQA2018NanoBEIR-srsrnatural_language504,5981230.19040.30940.3183Reranking hybrid
NanoFiQA2018NanoBEIR-svsvnatural_language504,5981230.11590.34350.2256Dense
NanoFiQA2018NanoBEIR-ththnatural_language504,5981230.27260.40850.3911Dense
NanoFiQA2018NanoBEIR-vivinatural_language504,5981230.33000.33060.3693Reranking hybrid
NanoHotpotQANanoBEIR-ararnatural_language505,0901000.68370.73650.7798Reranking hybrid
NanoHotpotQANanoBEIR-dedenatural_language505,0901000.79040.73880.7941Reranking hybrid
NanoHotpotQANanoBEIR-esesnatural_language505,0901000.74660.71010.7209BM25
NanoHotpotQANanoBEIR-frfrnatural_language505,0901000.72580.75640.7834Reranking hybrid
NanoHotpotQANanoBEIR-ititnatural_language505,0901000.72750.75400.7762Reranking hybrid
NanoHotpotQANanoBEIR-jajanatural_language505,0901000.52960.68850.6354Dense
NanoHotpotQANanoBEIR-kokonatural_language505,0901000.59660.62690.6316Reranking hybrid
NanoHotpotQANanoBEIR-nononatural_language505,0901000.77280.75740.8168Reranking hybrid
NanoHotpotQANanoBEIR-ptptnatural_language505,0901000.76040.79480.8145Reranking hybrid
NanoHotpotQANanoBEIR-srsrnatural_language505,0901000.63270.75160.7414Dense
NanoHotpotQANanoBEIR-svsvnatural_language505,0901000.74130.76170.8233Reranking hybrid
NanoHotpotQANanoBEIR-ththnatural_language505,0901000.55230.68800.6652Dense
NanoHotpotQANanoBEIR-vivinatural_language505,0901000.63110.75520.7089Dense
NanoMSMARCONanoBEIR-ararnatural_language505,043500.27320.36250.3212Dense
NanoMSMARCONanoBEIR-dedenatural_language505,043500.35020.47280.4388Dense
NanoMSMARCONanoBEIR-esesnatural_language505,043500.40390.49870.4523Dense
NanoMSMARCONanoBEIR-frfrnatural_language505,043500.46080.57480.5312Dense
NanoMSMARCONanoBEIR-ititnatural_language505,043500.39570.50870.4781Dense
NanoMSMARCONanoBEIR-jajanatural_language505,043500.33180.47480.3743Dense
NanoMSMARCONanoBEIR-kokonatural_language505,043500.33200.41640.4371Reranking hybrid
NanoMSMARCONanoBEIR-nononatural_language505,043500.32490.41740.3728Dense
NanoMSMARCONanoBEIR-ptptnatural_language505,043500.34940.51210.4873Dense
NanoMSMARCONanoBEIR-srsrnatural_language505,043500.28330.45410.4072Dense
NanoMSMARCONanoBEIR-svsvnatural_language505,043500.37770.45590.4737Reranking hybrid
NanoMSMARCONanoBEIR-ththnatural_language505,043500.29070.42650.3653Dense
NanoMSMARCONanoBEIR-vivinatural_language505,043500.34230.49340.4454Dense
NanoNFCorpusNanoBEIR-ararnatural_language502,9532,5180.16630.20670.2000Dense
NanoNFCorpusNanoBEIR-dedenatural_language502,9532,5180.22600.28100.2582Dense
NanoNFCorpusNanoBEIR-esesnatural_language502,9532,5180.31400.30530.3212Reranking hybrid
NanoNFCorpusNanoBEIR-frfrnatural_language502,9532,5180.32350.32870.3265Dense
NanoNFCorpusNanoBEIR-ititnatural_language502,9532,5180.33470.26340.3377Reranking hybrid
NanoNFCorpusNanoBEIR-jajanatural_language502,9532,5180.26840.26810.3139Reranking hybrid
NanoNFCorpusNanoBEIR-kokonatural_language502,9532,5180.27190.25150.2745Reranking hybrid
NanoNFCorpusNanoBEIR-nononatural_language502,9532,5180.30070.26630.3172Reranking hybrid
NanoNFCorpusNanoBEIR-ptptnatural_language502,9532,5180.33890.32980.3519Reranking hybrid
NanoNFCorpusNanoBEIR-srsrnatural_language502,9532,5180.17760.24110.2301Dense
NanoNFCorpusNanoBEIR-svsvnatural_language502,9532,5180.27930.26880.3145Reranking hybrid
NanoNFCorpusNanoBEIR-ththnatural_language502,9532,5180.26630.24090.2743Reranking hybrid
NanoNFCorpusNanoBEIR-vivinatural_language502,9532,5180.24860.27560.2879Reranking hybrid
NanoNQNanoBEIR-ararnatural_language505,035570.35550.46000.4247Dense
NanoNQNanoBEIR-dedenatural_language505,035570.37570.52660.4491Dense
NanoNQNanoBEIR-esesnatural_language505,035570.31970.50590.4130Dense
NanoNQNanoBEIR-frfrnatural_language505,035570.44600.59700.5556Dense
NanoNQNanoBEIR-ititnatural_language505,035570.37500.51330.4545Dense
NanoNQNanoBEIR-jajanatural_language505,035570.44730.61650.5569Dense
NanoNQNanoBEIR-kokonatural_language505,035570.43010.58050.5033Dense
NanoNQNanoBEIR-nononatural_language505,035570.30110.54900.3641Dense
NanoNQNanoBEIR-ptptnatural_language505,035570.36450.51030.4522Dense
NanoNQNanoBEIR-srsrnatural_language505,035570.26240.53430.4228Dense
NanoNQNanoBEIR-svsvnatural_language505,035570.30260.51470.3660Dense
NanoNQNanoBEIR-ththnatural_language505,035570.31910.53670.4246Dense
NanoNQNanoBEIR-vivinatural_language505,035570.38480.59390.5351Dense
NanoQuoraRetrievalNanoBEIR-ararnatural_language505,046700.72380.81700.7728Dense
NanoQuoraRetrievalNanoBEIR-dedenatural_language505,046700.71770.83230.7982Dense
NanoQuoraRetrievalNanoBEIR-esesnatural_language505,046700.79120.86610.8425Dense
NanoQuoraRetrievalNanoBEIR-frfrnatural_language505,046700.76570.85930.8376Dense
NanoQuoraRetrievalNanoBEIR-ititnatural_language505,046700.71300.86990.8038Dense
NanoQuoraRetrievalNanoBEIR-jajanatural_language505,046700.73910.77220.7417Dense
NanoQuoraRetrievalNanoBEIR-kokonatural_language505,046700.70620.81330.7632Dense
NanoQuoraRetrievalNanoBEIR-nononatural_language505,046700.63470.78290.6988Dense
NanoQuoraRetrievalNanoBEIR-ptptnatural_language505,046700.72470.81720.7634Dense
NanoQuoraRetrievalNanoBEIR-srsrnatural_language505,046700.58370.81000.7129Dense
NanoQuoraRetrievalNanoBEIR-svsvnatural_language505,046700.64740.82740.7341Dense
NanoQuoraRetrievalNanoBEIR-ththnatural_language505,046700.72670.88590.7928Dense
NanoQuoraRetrievalNanoBEIR-vivinatural_language505,046700.72380.86460.7903Dense
NanoSCIDOCSNanoBEIR-armultilingualnatural_language502,2102440.24880.29960.2939Dense
NanoSCIDOCSNanoBEIR-dedenatural_language502,2102440.19130.37110.3004Dense
NanoSCIDOCSNanoBEIR-esesnatural_language502,2102440.29780.35510.3554Reranking hybrid
NanoSCIDOCSNanoBEIR-frfrnatural_language502,2102440.31290.37340.3787Reranking hybrid
NanoSCIDOCSNanoBEIR-ititnatural_language502,2102440.28670.33780.3499Reranking hybrid
NanoSCIDOCSNanoBEIR-jajanatural_language502,2102440.31160.34980.3710Reranking hybrid
NanoSCIDOCSNanoBEIR-kokonatural_language502,2102440.26730.33100.3380Reranking hybrid
NanoSCIDOCSNanoBEIR-nononatural_language502,2102440.21530.34120.2467Dense
NanoSCIDOCSNanoBEIR-ptptnatural_language502,2102440.29110.31630.3201Reranking hybrid
NanoSCIDOCSNanoBEIR-srsrnatural_language502,2102440.25610.33820.3229Dense
NanoSCIDOCSNanoBEIR-svsvnatural_language502,2102440.18920.34720.2844Dense
NanoSCIDOCSNanoBEIR-ththnatural_language502,2102440.26410.29150.3165Reranking hybrid
NanoSCIDOCSNanoBEIR-vivinatural_language502,2102440.28390.32010.3202Reranking hybrid
NanoSciFactNanoBEIR-ararnatural_language502,919560.57550.58070.6340Reranking hybrid
NanoSciFactNanoBEIR-dedenatural_language502,919560.62120.70170.6577Dense
NanoSciFactNanoBEIR-esesnatural_language502,919560.71760.64800.7280Reranking hybrid
NanoSciFactNanoBEIR-frfrnatural_language502,919560.71820.69650.7342Reranking hybrid
NanoSciFactNanoBEIR-ititnatural_language502,919560.67140.63810.6766Reranking hybrid
NanoSciFactNanoBEIR-jajanatural_language502,919560.70230.67510.7232Reranking hybrid
NanoSciFactNanoBEIR-kokonatural_language502,919560.68350.62070.6838Reranking hybrid
NanoSciFactNanoBEIR-nononatural_language502,919560.56520.62170.6137Dense
NanoSciFactNanoBEIR-ptptnatural_language502,919560.68270.68010.7118Reranking hybrid
NanoSciFactNanoBEIR-srsrnatural_language502,919560.64680.62230.6834Reranking hybrid
NanoSciFactNanoBEIR-svsvnatural_language502,919560.65390.67300.7181Reranking hybrid
NanoSciFactNanoBEIR-ththnatural_language502,919560.63340.57130.6206BM25
NanoSciFactNanoBEIR-vivinatural_language502,919560.71340.66440.7632Reranking hybrid
NanoTouche2020NanoBEIR-ararnatural_language495,7459320.52630.41550.5262BM25
NanoTouche2020NanoBEIR-dedenatural_language495,7459320.48240.41550.5012Reranking hybrid
NanoTouche2020NanoBEIR-esesnatural_language495,7459320.57320.41430.5306BM25
NanoTouche2020NanoBEIR-frfrnatural_language495,7459320.56090.47330.5763Reranking hybrid
NanoTouche2020NanoBEIR-ititnatural_language495,7459320.57140.45990.5717Reranking hybrid
NanoTouche2020NanoBEIR-jajanatural_language495,7459320.53610.43540.5296BM25
NanoTouche2020NanoBEIR-kokonatural_language495,7459320.50330.45640.5013BM25
NanoTouche2020NanoBEIR-nononatural_language495,7459320.45860.46130.5021Reranking hybrid
NanoTouche2020NanoBEIR-ptptnatural_language495,7459320.53660.44960.5371Reranking hybrid
NanoTouche2020NanoBEIR-srsrnatural_language495,7459320.47410.46050.5246Reranking hybrid
NanoTouche2020NanoBEIR-svsvnatural_language495,7459320.42960.44270.4707Reranking hybrid
NanoTouche2020NanoBEIR-ththnatural_language495,7459320.51080.45340.5380Reranking hybrid
NanoTouche2020NanoBEIR-vivinatural_language495,7459320.54440.46360.5368BM25