Dataset Viewer
Auto-converted to Parquet Duplicate
query-id
stringlengths
4
4
corpus-id
stringlengths
4
7
score
int64
1
1
q001
710430
1
q002
710430
1
q003
710430
1
q004
710430
1
q005
710430
1
q006
1931
1
q007
1931
1
q008
1931
1
q009
1931
1
q010
1931
1
q011
36274
1
q012
36274
1
q013
36274
1
q014
36274
1
q015
36274
1
q016
5545
1
q017
5545
1
q018
206725
1
q019
206725
1
q020
206725
1
q021
206725
1
q022
339749
1
q023
339749
1
q024
4661
1
q025
4661
1
q026
4661
1
q027
1128249
1
q028
1128249
1
q029
1128249
1
q030
86113
1
q031
86113
1
q032
8343
1
q033
92237
1
q034
142457
1
q035
142457
1
q036
88484
1
q037
69946
1
q038
69946
1
q039
69946
1
q040
725299
1
q041
725299
1
q042
12000
1
q043
42136
1
q044
42136
1
q045
2774465
1
q046
1188904
1
q047
1188904
1
q048
342189
1
q049
140270
1
q050
140270
1
q051
23468
1
q052
36515
1
q053
708470
1
q054
3203
1
q055
3203
1
q056
103047
1
q057
134278
1
q058
134278
1

Turkish RAG Eval

58 hand-written Turkish questions over 54 Turkish Wikipedia health articles (1.09 M characters), each labelled with the article that answers it and a verbatim answer span. Built for turkish-rag-eval, a harness that measures which parts of a RAG pipeline (chunking, stemming, embedding model) pay off on Turkish.

from datasets import load_dataset

corpus = load_dataset("RizgarOzan/turkish-rag-eval", "corpus", split="corpus")
queries = load_dataset("RizgarOzan/turkish-rag-eval", "queries", split="queries")
qrels = load_dataset("RizgarOzan/turkish-rag-eval", split="test")

Files

BEIR layout, the one MTEB retrieval tasks read.

File Rows Fields
corpus.jsonl 54 _id (MediaWiki pageid), title, text, url
queries.jsonl 58 _id, text, answer_span
qrels/test.jsonl 58 query-id, corpus-id, score (always 1)

27 of the 54 articles answer at least one question; the other 27 are distractors from the same domain.

passages/ holds the same data at passage level (configs passages-corpus, passages-queries, passages-qrels): the harness's hierarchical chunks (≤700 characters, title is the section path), and a passage is relevant when it comes from the answering article and contains answer_span. Articles average ~20 000 characters, so a 512-token encoder only sees the lead of each one at article level; passages are what a RAG pipeline actually retrieves.

How it was made

  • Questions are paraphrased, not copied. "Şeker hastalığı teşhisi konan kişilerin ne kadarında ketoasidoz da bulunuyor?" is asked of text reading "yaklaşık %25'i, diyabet teşhisi konulduğunda...". Copied wording would hand lexical retrievers an unearned advantage.
  • One human annotator, one pass. No inter-annotator agreement figure yet.
  • Relevance here is article-level. The harness is stricter: a retrieved chunk counts only if it comes from the right article and contains answer_span. Use the span if you chunk the corpus yourself.
  • Corpus snapshot. Articles were fetched through the MediaWiki API as plain-text extracts, == Section == markers kept. The GitHub repo refetches live revisions; this upload pins one snapshot.

Results on this data

From the harness: hierarchical chunks, chunk-level relevance, CPU only. All configurations and six models are in the repo README.

Retriever nDCG@10
dense, newmindai/Mursit-Large-TR-Retrieval 0.781
dense, intfloat/multilingual-e5-base 0.668
dense, paraphrase-multilingual-MiniLM-L12-v2 0.501
BM25, 5-character prefix stemming 0.494

Limits

  • 58 queries is small: differences under about 0.05 nDCG are noise.
  • One domain (health) for now. Questions from five more domains are being added in the repo and will join this dataset once verified.
  • Encyclopaedic text, not clinical text. No patient data is used anywhere, and nothing here is a medical device.

Licence

Article text and answer spans come from Turkish Wikipedia, CC BY-SA 4.0; each article keeps its url. The questions were written for this dataset and are released under the same licence. The harness code is MIT.

Citation

@misc{ozan2026turkishrageval,
  author       = {Rızgar Ozan},
  title        = {Turkish RAG Eval: a retrieval test set for Turkish Wikipedia},
  year         = {2026},
  howpublished = {\url{https://huggingface.co/datasets/RizgarOzan/turkish-rag-eval}},
  note         = {Harness: \url{https://github.com/RizgarOzan/turkish-rag-eval}}
}
Downloads last month
57