Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

NanoMTEB-Korean

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

NanoMTEB-Korean is a compact Korean retrieval benchmark containing MTEB(kor, v1) retrieval-family splits available in the Nano collection. It includes Korean biomedical, strategy QA, legal/government, MIRACL, and SQuAD-style retrieval tasks.

Usage

from datasets import load_dataset

dataset_id = "hakari-bench/NanoMTEB-Korean"
split = "autorag"

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.

Candidate Construction

  • bm25: local BM25 top-500 with automatic language-aware tokenization. The resolved tokenizer is shown in the Candidate Quality table, for example wordseg@ja.
  • 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.

Split Statistics

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

Nano split Queries Corpus Qrels Query chars avg Query chars p50 Query chars p75 Doc chars avg Doc chars p50 Doc chars p75
autorag 114 720 114 69.6 69.0 80.8 823.6 870.0 1024.0
ko_strategy_qa 200 9251 378 22.4 22.0 26.0 321.3 276.0 390.0
lawir_ko 200 3562 200 50.6 51.0 58.0 387.8 313.0 559.0
miracl_ko 200 10000 508 21.7 19.0 22.0 193.2 149.0 258.0
squad_kor_v1 200 960 200 35.8 34.0 43.2 546.2 465.5 593.2

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 split BM25 tokenizer BM25 nDCG@10 Dense nDCG@10 Hybrid nDCG@10 BM25 Recall@100 Dense Recall@100 Hybrid Recall@100 Hybrid candidates Safeguard positives
Mean - 67.43 75.04 76.41 93.87 94.08 97.06 - 22
autorag wordseg@ko 90.53 77.45 85.30 100.00 95.61 100.00 100 0
ko_strategy_qa wordseg@ko 47.40 70.84 64.76 82.12 84.96 89.62 100-101 14
lawir_ko wordseg@ko 52.32 65.34 64.91 92.00 97.00 97.50 100-101 5
miracl_ko wordseg@ko 50.69 69.97 71.21 95.74 92.84 98.17 100-101 3
squad_kor_v1 wordseg@ko 96.18 91.58 95.85 99.50 100.00 100.00 100 0

Hybrid Safeguard Summary

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

Source Links

License

NanoMTEB-Korean is a derived dataset. Users must comply with the licenses, terms, and attribution requirements of the upstream MTEB task sources and their original datasets.

Downloads last month
132