CoolFace
Datasetpublic

hakari-bench/NanoBEIR-it

NanoBEIR-it This dataset is a Nano-style retrieval dataset for HAKARI-bench. NanoBEIR-it is the Italian language-specific component of MNanoBEIR. It groups compact BEIR-derived retrieval tasks for efficient evaluation of document ranking in that language. Usage from datasets import load_dataset dataset_id = "hakari-bench/NanoBEIR-it" split = "NanoArguAna" queries = load_dataset(dataset_id, "queries", split=split) corpus = load_dataset(dataset_id, "corpus"… See the full description on the dataset page: https://huggingface.co/datasets/hakari-bench/NanoBEIR-it.

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes311downloads
Dataset Card

NanoBEIR-it

This dataset is a Nano-style retrieval dataset for HAKARI-bench.

NanoBEIR-it is the Italian language-specific component of MNanoBEIR. It groups compact BEIR-derived retrieval tasks for efficient evaluation of document ranking in that language.

Usage

python
from datasets import load_dataset

dataset_id = "hakari-bench/NanoBEIR-it"
split = "NanoArguAna"

queries = load_dataset(dataset_id, "queries", split=split)
corpus = load_dataset(dataset_id, "corpus", split=split)
qrels = load_dataset(dataset_id, "qrels", split=split)
reranking_candidates = load_dataset(dataset_id, "reranking_hybrid", split=split)

Data Layout

This dataset uses six Hugging Face Datasets configs:

  • —corpus: documents with _id and text
  • —queries: queries with _id and text
  • —qrels: positive relevance labels with query-id and corpus-id
  • —bm25: BM25 candidate lists with query-id and corpus-ids
  • —harrier_oss_v1_270m: dense candidate lists from microsoft/harrier-oss-v1-270m
  • —reranking_hybrid: RRF candidate lists built from bm25 and harrier_oss_v1_270m

Each config has the same Nano split names. NanoNFCorpus includes the full positive qrels (2,518 rows); qrels are not capped to the top-100 reranking depth.

Candidate Construction

  • —bm25: local BM25 top-500 with automatic tokenizer selection. Auto mode uses wordseg for ja, zh, th, ko, and vi, and regex otherwise. The resolved tokenizer is shown for each split in the Candidate Quality table.
  • —harrier_oss_v1_270m: dense top-500 from microsoft/harrier-oss-v1-270m. In tables this is shown as Dense; Dense means microsoft/harrier-oss-v1-270m with the web_search_query prompt for queries and cosine similarity over normalized embeddings.
  • —reranking_hybrid: RRF over bm25 and harrier_oss_v1_270m using rrf_k=100, keeping the RRF top-100.

Safeguard means rank 101 is appended only when RRF top-100 contains no qrels-positive document. Qrels are not capped to fit the top-100 reranking depth. For NanoNFCorpus, some queries have more than 100 positive qrels, so top-100 hybrid candidate coverage is expected to be below 100%; this is a candidate-list diagnostic, not a qrels filtering rule.

Split Statistics

Length statistics are character counts computed with len(str(text)).

Nano splitQueriesCorpusQrelsQuery chars avgQuery chars p50Query chars p75Doc chars avgDoc chars p50Doc chars p75
NanoArguAna503635501187.41177.01344.81102.3980.01382.0
NanoClimateFEVER503408148152.4147.5190.21743.11575.52242.0
NanoDBPedia506045115838.336.550.0361.7394.0476.0
NanoFEVER5049965750.145.057.01290.41091.01723.5
NanoFiQA201850459812374.671.091.21005.1724.01269.5
NanoHotpotQA50509010093.483.5115.8378.3323.5520.0
NanoMSMARCO5050435042.038.549.5356.6326.0406.5
NanoNFCorpus502953251828.524.038.81725.51754.02029.0
NanoNQ5050355754.352.561.0575.9478.0820.0
NanoQuoraRetrieval5050467052.850.557.864.456.076.0
NanoSCIDOCS50221024489.587.5106.51062.01045.01406.8
NanoSciFact50291956113.7111.5133.21631.51537.01970.0
NanoTouche202049574593256.356.067.02352.81090.03343.0

Candidate Quality

nDCG@10 and Recall@100 are computed from the included candidate rankings against the included qrels, then reported as 0-100 scores such as 52.45. Recall@100 uses only the top 100 candidates; an optional rank-101 safeguard positive is not counted in Recall@100.

Dense means microsoft/harrier-oss-v1-270m with the web_search_query prompt and cosine similarity.

Nano splitBM25 tokenizerBM25 nDCG@10Dense nDCG@10Hybrid nDCG@10BM25 Recall@100Dense Recall@100Hybrid Recall@100Hybrid candidatesSafeguard positives
Mean-48.5753.3853.3374.6280.5882.75-23
NanoArguAnaregex39.3447.0641.3888.0098.0098.00100-1011
NanoClimateFEVERregex27.0033.8932.5557.9366.4367.77100-1012
NanoDBPediaregex53.3964.2760.6969.0980.7580.051000
NanoFEVERregex77.7679.7279.7796.0089.0098.00100-1011
NanoFiQA2018regex26.3334.4334.0559.0178.4278.77100-1015
NanoHotpotQAregex72.7575.4077.6293.0092.0097.001000
NanoMSMARCOregex39.5750.8747.8188.0098.0098.00100-1011
NanoNFCorpusregex@regex33.4726.3433.7721.4426.3328.58100-1014
NanoNQregex37.5051.3345.4582.0087.0090.00100-1014
NanoQuoraRetrievalregex71.3086.9980.3896.0098.00100.001000
NanoSCIDOCSregex28.6733.7834.9953.6765.0764.57100-1011
NanoSciFactregex67.1463.8167.6688.0088.0092.00100-1014
NanoTouche2020regex57.1445.9957.1777.9280.5783.021000

Hybrid Safeguard Summary

  • —Safeguard positives: 23
  • —Rows limited by corpus size: 0
  • —Metadata file: reranking_hybrid_metadata.json

Source Links

License

NanoBEIR-it is a derived dataset. Users must comply with the licenses, terms, and attribution requirements of the upstream source datasets.