Hallucination Detection
Detect and prevent LLM hallucinations: factuality checking, grounding verification, and off-brand content filtering.
Last updated
After this section you can
- Classify a hallucination as factual, citation, reasoning, or entity, and name the detection layer that catches each type
- Compute a detector’s daily review load from base rate, precision, and recall — flagged cases, false alarms, and leaked hallucinations — and defend the operating point in an interview
- Build a two-layer grounding + consistency checker in stdlib Python, and state which production components (NLI cross-encoder, NER) replace the toy checks
- Run a weekly calibration loop: sample and human-label 200 cases, recompute per-layer precision/recall, and retune thresholds after base-rate shifts
Hallucination & Off-Brand Detection
Detect fabricated facts, fake citations, and brand-policy violations before they reach users.