The 400-row bilingual evaluation set is available on Hugging Face:
from datasets import load_dataset
ds = load_dataset("Rajan2026/soas-english-uzbek-rag-evaluation")
print(ds)License: CC-BY-4.0.
Dataset DOI: 10.5281/zenodo.21067667.
- Industry brief: concise engineering framing for AI teams evaluating multilingual RAG.
- Retrieval-only dataset card: public schema, intended uses, limitations, and citation.
- Recall@k evaluator: minimal scorer for retrieved document IDs against
source_doc_ids. - LinkedIn visibility drafts: four grounded posts for industry-facing dissemination.
- External OSS trail: RAGAS PR #2795 and LangChain issue #38572.
Evaluator smoke check:
python scripts/compute_retrieval_recall.py --oracle-check --k 5The smoke check validates scorer wiring by using source_doc_ids as retrieved IDs. It is not a model result.
Headline result: Uzbek retrieval recall improved from 39% → 98% via Wikipedia corpus supplementation. Cohen's d = 2.91. Effect size 7.9x larger than model-swap optimisation on the same task.
| Metric | English | Uzbek (before) | Uzbek (after corpus supplementation) |
|---|---|---|---|
| Retrieval Recall | ~92% | 39% | 98% |
| Effect Size (Cohen's d) | — | baseline | 2.91 |
Why this matters: For low-resource languages, corpus engineering dominates model selection. We measured a 7.9x larger effect from corpus supplementation than from changing the underlying embedding/LLM model.
- Bilingual evaluation harness (English + Uzbek) for RAG retrieval quality
- Reproducible methodology with corpus supplementation pipeline
- Internal full-QA evaluation assets and quality-audit notes
- Scripts to compute Recall@k, MRR, and effect size statistics
Architecture and reproducibility notes are documented separately:
docs/architecture_blueprints.md: pipeline, Isambard execution topology, evaluation control plane, and publication data flowdocs/technical_architecture.md: components, data model, retrieval backends, evaluation loop, and reproducibility controlsdocs/isambard_reproducibility.md: known GitHub/local/Isambard locations and cluster rehydration checklistdocs/technical_q_and_a.md: technical discussion notes, limitations, and claims to avoid
Environment bootstrap on Isambard:
bash scripts/check_env.sh
bash scripts/bootstrap_env.sh
source .venv/bin/activateSmoke path:
python scripts/fetch_datasets.py --config configs/base.yaml
python scripts/build_corpus.py --config configs/exp_smoke.yaml
python scripts/build_index.py --config configs/exp_smoke.yaml
python scripts/run_eval.py --config configs/exp_smoke.yamlResearch-output regeneration:
python scripts/generate_research_outputs.pyDataset DOI: 10.5281/zenodo.21067667
@dataset{tripathi_2026_soas_en_uz_rag,
author = {Tripathi, Rajan Prasad},
title = {SOAS English-Uzbek RAG Evaluation (Retrieval-Only)},
year = {2026},
publisher = {Zenodo},
version = {manual_eval_v5},
doi = {10.5281/zenodo.21067667},
url = {https://doi.org/10.5281/zenodo.21067667}
}Affiliations: (1) AI² Lab, School of Digital Technologies, American University of Technology, Uzbekistan; (2) Bikal Technologies Ltd, Coventry, UK; (3) Centre for AI Futures, SOAS University of London. Contact: rajantripathi22@gmail.com
- Languages: English and Uzbek
- Domains: governance, history, institutions, culture
manual_eval_v1: Initial 200-item set (100 EN, 100 UZ)manual_eval_v2: Quality audit, failure taxonomymanual_eval_v4: Uzbek supplement v2, 400 itemsmanual_eval_v5: Enriched schema with difficulty, quality_flag, source_title (400 items)
The internal evaluation schema includes reference-answer fields for QA analysis. The public Hugging Face dataset is retrieval-only and intentionally excludes answer text to reduce leakage and source-clearance risk.
id: Unique identifierlanguage: "en" or "uz"domain: "governance", "history", "institutions", "culture"question: Culturally grounded questiongold_answer: Internal reference answer, excluded from the public retrieval-only Hugging Face datasetsource_doc_ids: Wikipedia article IDs for gold sourcesanswerable: Boolean flagcultural_specificity: "unknown", "low", "medium", "high"source_title: Resolved Wikipedia title (v5 enrichment)difficulty: "easy", "medium", "hard" (v5 enrichment)quality_flag: Domain-specific quality issues (v5 enrichment)
- No retrieval baseline
- Vector retrieval (TF-IDF, sentence embeddings)
- Chunking variants (256/64, 128/32)
- Embedding comparison (mpnet, multilingual-e5-large)
- Corpus supplementation (Uzbek v1, Uzbek v2)
- BM25 and hybrid retrieval
| Version | Size | Key Features | Use Case |
|---|---|---|---|
| v1 | 200 items | Initial balanced set | Baseline experiments |
| v2 | 200 items | Quality audit, failure taxonomy | Error analysis |
| v4 | 400 items | Uzbek supplement v2 | Current best performance |
| v5 | 400 items | Enriched schema (difficulty, quality_flag, source_title) | Final experiments, publication |
Corpus coverage dominates model choice for culturally grounded multilingual retrieval.
- Uzbek supplementation: Recall improved from 39% to 98% through targeted corpus supplementation (59 percentage point improvement, p < 0.001, Cohen's d = 2.91)
- Model optimisation: Embedding changes produced only a 7.5 percentage point gain (Cohen's d = 0.31). The corpus supplementation effect is 7.9 times larger than the model effect.
- English baseline: 63% recall at baseline, with a 37% gap identified in history and institutions domains. English supplementation was attempted but results were retracted due to data leakage.
- Best overall performance: 79.5% recall with Uzbek supplement v2 + e5-large embeddings
- Weakest domains: History and institutions showed lowest coverage before supplementation
- Retriever collapse: When sources missing, retrieval collapses onto generic hub documents rather than failing independently
- Statistical significance: All supplementation effects statistically significant (bootstrap CIs, p < 0.001)
| Domain | English | Uzbek |
|---|---|---|
| Governance | 80% | 98% |
| History | 40% | 96% |
| Institutions | 32% | 96% |
| Culture | 100% | 94% |
assets/: lightweight visual assets such as the pipeline overview diagramconfigs/: YAML experiment configurationsdocs/: benchmark, methodology, results, and limitations documentationhf_dataset/: public retrieval-only Hugging Face dataset card and JSONL filesprompts/: prompt templatesresearch_outputs/: summary tables, figures, concept note, and workshop paperresults/reports/: synthesis reports retained in-reposcripts/: CLI entrypoints and lightweight report generatorsslurm/: Slurm templates for cluster executionsrc/: retrieval, evaluation, orchestration, and dataset modules
Large HPC artifacts such as raw datasets, processed corpora, indexes, and full experiment run directories are intentionally excluded from version control.
Environment bootstrap on Isambard:
bash scripts/check_env.sh
bash scripts/bootstrap_env.sh
source .venv/bin/activateSmoke path:
python scripts/fetch_datasets.py --config configs/base.yaml
python scripts/build_corpus.py --config configs/exp_smoke.yaml
python scripts/build_index.py --config configs/exp_smoke.yaml
python scripts/run_eval.py --config configs/exp_smoke.yamlResearch-output regeneration:
python scripts/generate_research_outputs.py- Workshop paper: research_outputs/workshop_paper_2026/paper_final.md - 4-page workshop paper based on validated Uzbek supplementation results
- Updated synthesis: results/reports/project_synthesis_v2.md - Comprehensive results with corrected English status
- Original synthesis: results/reports/project_synthesis_20260309.md - Original validated results
- Error analysis: results/reports/manual_eval_v2_error_analysis_20260308.md - Failure cases and patterns
- English gap analysis: results/reports/english_corpus_gap_analysis.md - English corpus coverage gaps (baseline only)
- Statistical analysis: results/reports/statistical_analysis.md - Bootstrap confidence intervals, effect sizes, significance tests
- Policy brief: research_outputs/policy_brief_culturally_grounded_ai.md - 2-page non-technical brief for funding panels (AHRC, UNESCO, British Academy)
- Workshop outline: research_outputs/workshop_outline_20260309.md - Structured outline for workshop papers
- Concept note: research_outputs/concept_note_20260309.md - Original project concept
- Audit summary: research_outputs/audit_summary_20260309.md - Dataset quality audit
- Failure taxonomy: research_outputs/failure_taxonomy_20260309.md - Systematic failure classification
- V5 enrichment spec: research_outputs/v5_enrichment_spec_20260309.md - Dataset version 5 schema additions
- Summary tables: research_outputs/summary_tables.md - Key metrics and comparisons
- Supplementation figure: research_outputs/figure_baseline_vs_supplement.svg - Visualisation of supplementation impact
- Language/domain figure: research_outputs/figure_language_domain_comparison.svg - Per-language, per-domain comparison
- Pipeline diagram: assets/pipeline_overview.svg - System architecture overview
An initial English supplementation attempt was conducted but results have been retracted. The synthetic documents used contained gold_answer text from the evaluation set, introducing data leakage. Results claiming 100% English recall are invalid. The Uzbek supplementation results (39% to 98%) remain valid. English results are therefore reported at baseline only.
The following results are validated and reported:
- Uzbek supplementation v2: 59 percentage point improvement (39% to 98%, d = 2.91)
- Embedding model comparison: 7.5 percentage point improvement (d = 0.31)
- Chunking variations: no significant difference (p = 1.000)
- Hybrid vs vector retrieval: no significant difference (p = 1.000)
The following experiments were not attempted:
- Cross-lingual retrieval (English questions on Uzbek corpus, or vice versa)
- LLM-as-judge evaluation (infrastructure exists but not executed)
- Human evaluation
- The public repository excludes full raw datasets, processed corpora, and index artifacts
- Evaluation currently relies on retrieval recall and heuristic grounding-oriented metrics
- Generation is a stub (returns first retrieved sentence), so answer quality metrics should be interpreted cautiously
- Statistical power limited by benchmark size (400 items) - larger benchmarks would yield narrower confidence intervals
- English was not successfully supplemented (baseline results only)
- Findings based on only 2 languages (English, Uzbek) - may not generalise to other language families
If you use this repository, cite it as a research benchmark and software artifact. A starter citation file is provided in CITATION.cff.
This work used the Isambard-AI supercomputer under the u6ef project. Centre for AI Futures, SOAS University of London. Contact: rt1@soas.ac.uk
See LICENSE file for details.