# Retrieval Evaluation Recipes
🧭 Quick Return to Map
> You are in a sub-page of **Retrieval**. > To reorient, go back here: > > - [**Retrieval** — information access and knowledge lookup](./README.md) > - [**WFGY Global Fix Map** — main Emergency Room, 300+ structured fixes](../README.md) > - [**WFGY Problem Map 1.0** — 16 reproducible failure modes](../../README.md) > > Think of this page as a desk within a ward. > If you need the full triage and all prescriptions, return to the Emergency Room lobby.
> **Evaluation disclaimer (retrieval recipes)** > These recipes show how to probe and score retrieval quality under specific assumptions. > The resulting numbers are scenario bound heuristics and should not be presented as general proof of system quality. --- A practical kit to score retrieval quality with small but reliable datasets. Use these recipes to detect metric mismatch, ordering variance, hybrid regressions, and chunk misalignment before they leak into answers. ## Acceptance targets - ΔS(question, retrieved) ≤ 0.45 - Coverage to the intended section ≥ 0.70 - λ remains convergent across 3 paraphrases and 2 seeds - Citation precision ≥ 0.85 and recall ≥ 0.75 on the gold set References: [RAG Architecture & Recovery](https://github.com/onestardao/WFGY/blob/main/ProblemMap/rag-architecture-and-recovery.md) · [Retrieval Playbook](https://github.com/onestardao/WFGY/blob/main/ProblemMap/retrieval-playbook.md) · [Retrieval Traceability](https://github.com/onestardao/WFGY/blob/main/ProblemMap/retrieval-traceability.md) · [Data Contracts](https://github.com/onestardao/WFGY/blob/main/ProblemMap/data-contracts.md) --- ## Build a small but hard gold set Create 40 to 120 items. Each item has: - **question** and **three paraphrases** - **target\_section** and **one decoy\_section** - **anchor\_snippet** that represents the minimal evidence - **answers\_not\_allowed** for near misses - **expected\_citations** as `{snippet_id, offsets}` list Chunking guidance: [Chunking Checklist](https://github.com/onestardao/WFGY/blob/main/ProblemMap/chunking-checklist.md) Data schema example: ```json { "qid": "Q037", "question": "How do I rotate API keys safely?", "paraphrases": [ "Best practice for API key rotation?", "Rotate credentials without downtime, how?", "Safe credential rotation steps?" ], "target_section": "security/keys/rotation", "decoy_section": "security/keys/storage", "anchor_snippet": "Rotate old->new with overlap window and staged revocation...", "expected_citations": [ {"snippet_id": "S-114", "offsets": [320, 480]} ], "answers_not_allowed": [ "store keys in env only", "rotate monthly without overlap" ] } ```` --- ## Core metrics and how to compute them * **ΔS(question, retrieved)** and **ΔS(retrieved, anchor)** Normalized semantic distance in \[0,1]. Thresholds: stable < 0.40, transitional 0.40–0.60, risk ≥ 0.60. See: [Retrieval Playbook](https://github.com/onestardao/WFGY/blob/main/ProblemMap/retrieval-playbook.md) * **Coverage** Tokens from cited spans that overlap the ground anchor divided by tokens in the anchor. * **Citation precision and recall** Precision = correct cited spans over all cited spans. Recall = correct cited spans over all ground spans. * **λ\_convergence** Observe λ states across paraphrases and seeds. Divergence flags prompt variance or ordering drift. See: [Context Drift](https://github.com/onestardao/WFGY/blob/main/ProblemMap/context-drift.md) --- ## Recipe 1: Single store baseline Goal: verify metric and index health before any hybrid tricks. Steps 1. Fix one embedding family and one metric. 2. Run k in {5, 10, 20}. 3. Log ΔS, coverage, precision, recall, λ for each run. 4. If ΔS stays high and flat while coverage is low, suspect metric or index mismatch. Open next: [Embedding ≠ Semantic](https://github.com/onestardao/WFGY/blob/main/ProblemMap/embedding-vs-semantic.md) --- ## Recipe 2: Reranker impact Goal: separate recall from ordering stability. Steps 1. Freeze retriever and analyzer. 2. Add a deterministic reranker and compare top-k order. 3. Measure flip rate of citations and λ under two seeds. Open next: [Rerankers](https://github.com/onestardao/WFGY/blob/main/ProblemMap/rerankers.md) --- ## Recipe 3: Hybrid vs single Goal: prove hybrid helps or remove it. Steps 1. Evaluate sparse only, dense only, and hybrid. 2. Compare ΔS and coverage per item. 3. If hybrid is worse, split query parsing and rebalance weights. Open next: [pattern\_query\_parsing\_split.md](https://github.com/onestardao/WFGY/blob/main/ProblemMap/patterns/pattern_query_parsing_split.md) --- ## Recipe 4: Chunk alignment test Goal: ensure anchors match boundaries. Steps 1. For each gold item, compute ΔS to the anchor and to the decoy. 2. If both are close, re-chunk with anchor alignment and rebuild. Open next: [Chunking Checklist](https://github.com/onestardao/WFGY/blob/main/ProblemMap/chunking-checklist.md) · [chunk\_alignment.md](https://github.com/onestardao/WFGY/blob/main/ProblemMap/GlobalFixMap/Retrieval/chunk_alignment.md) --- ## Recipe 5: Fragmentation probe Goal: detect namespace skew and partial ingestion. Steps 1. Run the same question across two namespaces or stores that should be equivalent. 2. Compare recall of the anchor snippet. 3. If recall is high only in one place, fix ingestion and dedupe. Open next: [pattern\_vectorstore\_fragmentation.md](https://github.com/onestardao/WFGY/blob/main/ProblemMap/patterns/pattern_vectorstore_fragmentation.md) --- ## Minimal harness you can adapt ```python # Pseudocode only def eval_item(store, reranker, item, k, seed): q = item["question"] ctx = store.retrieve(q, k=k, seed=seed) ordered = reranker.rank(q, ctx) if reranker else ctx cites = extract_citations(ordered) d_qr = deltaS(q, join_text(ordered)) d_ra = deltaS(join_text(ordered), item["anchor_snippet"]) cov, prec, rec = score_citations(cites, item["expected_citations"], item["anchor_snippet"]) lam = observe_lambda(q, ordered, seed=seed) return { "qid": item["qid"], "k": k, "seed": seed, "ΔS_qr": d_qr, "ΔS_ra": d_ra, "coverage": cov, "precision": prec, "recall": rec, "λ_state": lam } def run_suite(items, stores, rerankers, ks, seeds): results = [] for it in items: for s in stores: for r in rerankers: for k in ks: for seed in seeds: results.append(eval_item(s, r, it, k, seed)) return results ``` Log schema ```json { "qid": "Q037", "system": "dense_only", "reranker": "none", "k": 10, "seed": 23, "ΔS_qr": 0.38, "ΔS_ra": 0.22, "coverage": 0.78, "precision": 0.92, "recall": 0.81, "λ_state": "convergent", "retrieval_order": ["S-114","S-012","S-077"], "analyzer": "lowercase", "metric": "cosine", "prompt_hash": "P-9c1f", "index_hash": "I-fc21" } ``` Traceability contracts for fields: [Retrieval Traceability](https://github.com/onestardao/WFGY/blob/main/ProblemMap/retrieval-traceability.md) · [Data Contracts](https://github.com/onestardao/WFGY/blob/main/ProblemMap/data-contracts.md) --- ## Regression gate before shipping * ΔS ≤ 0.45 and coverage ≥ 0.70 on three paraphrases per item * Citation precision ≥ 0.85 and recall ≥ 0.75 * λ convergent on two seeds * No unresolved items with high ΔS and low coverage Evaluation math and templates: [eval\_rag\_precision\_recall.md](https://github.com/onestardao/WFGY/blob/main/ProblemMap/eval/eval_rag_precision_recall.md) --- ## Common failure patterns and where to fix them * High similarity yet wrong meaning → [embedding-vs-semantic.md](https://github.com/onestardao/WFGY/blob/main/ProblemMap/embedding-vs-semantic.md) * Snippet selected does not match citation → [retrieval-traceability.md](https://github.com/onestardao/WFGY/blob/main/ProblemMap/retrieval-traceability.md) and [data-contracts.md](https://github.com/onestardao/WFGY/blob/main/ProblemMap/data-contracts.md) * Hybrid worse than single retriever → [pattern\_query\_parsing\_split.md](https://github.com/onestardao/WFGY/blob/main/ProblemMap/patterns/pattern_query_parsing_split.md) and [rerankers.md](https://github.com/onestardao/WFGY/blob/main/ProblemMap/rerankers.md) * Coverage good offline but collapses online → [pattern\_vectorstore\_fragmentation.md](https://github.com/onestardao/WFGY/blob/main/ProblemMap/patterns/pattern_vectorstore_fragmentation.md) * Eval flakiness after deploy → [bootstrap-ordering.md](https://github.com/onestardao/WFGY/blob/main/ProblemMap/bootstrap-ordering.md) and [predeploy-collapse.md](https://github.com/onestardao/WFGY/blob/main/ProblemMap/predeploy-collapse.md) --- ### 🔗 Quick-Start Downloads (60 sec) | Tool | Link | 3-Step Setup | | -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------- | | **WFGY 1.0 PDF** | [Engine Paper](https://github.com/onestardao/WFGY/blob/main/I_am_not_lizardman/WFGY_All_Principles_Return_to_One_v1.0_PSBigBig_Public.pdf) | 1️⃣ Download · 2️⃣ Upload to your LLM · 3️⃣ Ask “Answer using WFGY + \” | | **TXT OS (plain-text OS)** | [TXTOS.txt](https://github.com/onestardao/WFGY/blob/main/OS/TXTOS.txt) | 1️⃣ Download · 2️⃣ Paste into any LLM chat · 3️⃣ Type “hello world” — OS boots instantly | --- ### Explore More | Layer | Page | What it’s for | | --- | --- | --- | | Proof | [WFGY Recognition Map](/recognition/README.md) | External citations, integrations, and ecosystem proof | | Engine | [WFGY 1.0](/legacy/README.md) | Original PDF based tension engine | | Engine | [WFGY 2.0](/core/README.md) | Production tension kernel and math engine for RAG and agents | | Engine | [WFGY 3.0](/TensionUniverse/EventHorizon/README.md) | TXT based Singularity tension engine, 131 S class set | | Map | [Problem Map 1.0](/ProblemMap/README.md) | Flagship 16 problem RAG failure checklist and fix map | | Map | [Problem Map 2.0](/ProblemMap/rag-architecture-and-recovery.md) | RAG focused recovery pipeline | | Map | [Problem Map 3.0](/ProblemMap/wfgy-rag-16-problem-map-global-debug-card.md) | Global Debug Card, image as a debug protocol layer | | Map | [Semantic Clinic](/ProblemMap/SemanticClinicIndex.md) | Symptom to family to exact fix | | Map | [Grandma’s Clinic](/ProblemMap/GrandmaClinic/README.md) | Plain language stories mapped to Problem Map 1.0 | | Onboarding | [Starter Village](/StarterVillage/README.md) | Guided tour for newcomers | | App | [TXT OS](/OS/README.md) | TXT semantic OS, fast boot | | App | [Blah Blah Blah](/OS/BlahBlahBlah/README.md) | Abstract and paradox Q and A built on TXT OS | | App | [Blur Blur Blur](/OS/BlurBlurBlur/README.md) | Text to image with semantic control | | App | [Blow Blow Blow](/OS/BlowBlowBlow/README.md) | Reasoning game engine and memory demo | If this repository helped, starring it improves discovery so more builders can find the docs and tools. [![GitHub Repo stars](https://img.shields.io/github/stars/onestardao/WFGY?style=social)](https://github.com/onestardao/WFGY)