RE
RAG Explainer Resources
[REF] // PRIMARY SOURCES & TOOLS

Curated Reference Matrix

You have seen the pipeline — from page extraction to cosine ranking and cited answers. This is the next step: an annotated bibliography to explore RAG at your own pace, grounded in the primary research and tools behind what the demos just showed.

[PRESENTATION COMPANION] // SESSION TOOLKITMOBILE JUMP
Scan → open the explainer on your phone

Workshop Deck & Phone Demos

Presenting or sharing this material? Put this page on your final slide: attendees scan the code and run every demo on their own phone. Zero downloads, no login — take it, reuse it, explore afterwards.

[FILTER BY TOPIC]
[REF_01][A] Vector GeometryInteractive Tool

TensorFlow Embedding Projector

Google Brain Team • projector.tensorflow.org

Real-time interactive 3D projection of English Wikipedia embeddings (Word2Vec 10k). Hands-on visualization of PCA, t-SNE, and UMAP clustering without writing code.

Why it mattersPairs with the Closest-Match Map demo: proves that “meaning distance” is real geometry — related words form clusters you can walk through, on far bigger data.
[REF_02][A] Vector GeometryInteractive Atlas

Nomic Embedding Atlas

Nomic AI • atlas.nomic.ai

A web-native map that renders millions of high-dimensional document vectors in WebGL. Inspect density clusters, semantic voids, and outlier clauses across enterprise-scale text.

Why it mattersPairs with the Closest-Match Map demo at scale: what the map becomes when a 5-page policy grows into a 50,000-page corpus.
[REF_03][C] Embedding ModelsPaper + Library

Sentence-BERT: Sentence Embeddings using Siamese Networks

Nils Reimers & Iryna Gurevych • EMNLP 2019

The foundation of production RAG. Standard BERT needs 65 hours to find the most similar sentence pair among 10,000 sentences; SBERT’s siamese networks do it in ~5 seconds.

The mathematical breakthroughDecouples sentence comparison from inference compute — the reason Search can pre-compute Meaning Fingerprints offline and rank in milliseconds.
[REF_04][B] Chunking & IndexAlgorithms Spec

Efficient and Robust Approximate Nearest Neighbor Search Using HNSW Graphs

Yu. A. Malkov & D. A. Yashunin • IEEE TPAMI 2018

The algorithmic engine inside Chroma, Qdrant, Milvus, Weaviate, and pgvector. In short: shortcuts that skip most of the library — only a few shelves get checked, so lookup drops from scanning everything O(N) to O(log N).

Why it mattersPairs with the Vector DB demo: without an ANN index, searching 100,000 clauses means scoring every fingerprint; with HNSW, retrieval takes milliseconds.
[REF_05][C] Embedding ModelsFoundational Paper

Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks

Patrick Lewis et al. • NeurIPS 2020 (Meta AI)

The paper that coined “RAG”. Instead of stuffing knowledge into model weights, it keeps knowledge in a searchable index the model reads at answer time — so answers can cite external sources.

First principles anchorEstablishes why model weights must not be treated as a static encyclopedia — knowledge lives in the index, the model reads it at answer time.
[REF_06][D] GraphRAG & AgenticArchitecture Spec

From Local to Global: A GraphRAG Approach to Query-Focused Summarization

Edge et al. • Microsoft Research 2024

Solves basic RAG’s weak spot: high-level synthesis questions (“top 3 themes across all policies”). Uses an LLM to build a knowledge graph and summarize community clusters hierarchically.

When to level upBasic RAG wins needle-in-haystack lookups; GraphRAG is the upgrade path for whole-corpus summarization.
[REF_07][D] GraphRAG & AgenticPattern Guide

Self-RAG: Learning to Retrieve, Generate, and Critique through Self-Reflection

Asai et al. • ICLR 2024

Replaces the single-shot retrieve→answer flow with a self-critiquing loop: if retrieved context is weak or ambiguous, the agent reformulates the query and searches again before answering.

The trade-offHigher latency and token cost, in exchange for fewer hallucinations caused by false-positive chunk matches — a direct extension of the failure modes the demos show.
COPIED TO CLIPBOARD