
August 2026 LLM hallucination digest: from hidden-state signals to refusal tests
A ten-paper August digest comparing hidden-state runtime detectors, claim-level repair, false-premise correction, and RAG evaluations that penalize answers beyond the evidence.
Coverage window: August 1, 2026, 10:00 a.m. through September 1, 2026, 10:00 a.m. (UTC-05:00). Papers enter this issue by their first arXiv submission or native publication timestamp. All ten papers below fall inside that window.
August's papers put the mitigation decision closer to the point where a model can still act. Hidden-state probes watch risk before or during decoding. Span detectors point to the words that need checking. RAG repair systems edit claims against retrieved evidence. Evaluation work then asks a harder operational question: when the knowledge base is silent, will the product answer anyway?
That split matters for research planning. The papers use different signals, intervention points, benchmarks, and costs. A high score in one setting does not answer whether a method transfers to another. The comparison below keeps those boundaries visible.
Window snapshot
| Paper | Intervention surface | Evaluation setting | Venue signal | Code/data |
|---|---|---|---|---|
| SingProbe Technical Report | Token-level hidden-state runtime guard | SingStreamBench and hallucination/safety tests | arXiv preprint; no venue stated in the retrieved record | Paper lists public GitHub and Hugging Face links; repository access was unavailable when checked |
| SpanCalib-VLM | Multimodal hallucinated-span detection | SHROOM-Visions English split | arXiv preprint; SHROOM-Visions shared-task paper | Public code, weights, and evaluation artifacts listed |
| Detecting and Repairing Hallucinations in RAG | Claim-level repair against retrieved sources | RAGTruth; 916 repaired answers | Author-reported BNAIC/BeNeLearn 2026 Type A submission | Not disclosed on the retrieved first-party page |
| The Hallucination Signal Is a Mean Shift | Multi-layer hidden-state probing | Three 7B-scale models and three datasets | Author-reported EMNLP 2026 Main Conference acceptance | Public MIT-licensed implementation; datasets and baselines excluded |
| Prediction of Prediction (PoP) | Single-pass inter-layer activation risk score | TruthfulQA, HaluEval 2.0, FaithDial | Single-author arXiv preprint | Not disclosed on the retrieved first-party page |
| Self-Improving RAG | Retrieval-reasoning-judge retry loop | FinanceBench, 150 SEC-filing questions | Author-reported ICLR 2026 financial-AI workshop acceptance | Not disclosed on the retrieved first-party page |
| Why RAGs Hallucinate | Penalty-aware evaluation and knowledge-gap canaries | SimpleQA-Verified; 1,000 questions × 3 repeats | arXiv preprint; no venue stated in the retrieved record | Public code, configurations, transcripts, and judge votes listed |
| DEDUCE | Detect, devise, and correct false input premises | TruthfulQA, FalseQA, MisFactQA | Author-reported EMNLP 2026 Main Conference acceptance | Public GitHub repository listed |
| HalluTracer | Pre-decoding depth-averaged truth signal | Six open-source LLMs and five hallucination benchmarks | arXiv preprint; no venue stated in the retrieved record | Not disclosed on the retrieved first-party page |
| Hallucination Span Detection with Input-Side Evidence Alignment | Output-span detection plus input alignment | Conditional text generation; human alignment evaluation | arXiv preprint; no venue stated in the retrieved record | Public GitHub repository listed |
The table is a triage map rather than a leaderboard. The papers measure different objects, and the venue labels above preserve the difference between an arXiv record and an author-reported acceptance claim.
Hidden-state detectors move toward runtime use
The first group asks whether a model's internal activations can expose a risky continuation before an external verifier reads the completed answer. The attraction is clear: a detector that reuses the base model's forward pass can act earlier and add less latency. The boundary is equally clear: these methods need white-box access to instrumentable models, and their evidence usually comes from controlled English benchmarks.
SingProbe Technical Report
- Paper and date: SingProbe Technical Report, arXiv:2608.30703v1, first submitted August 31, 2026. 1
- Authors and institutions: Sing Team, AI Security Lab, Ant Group. The affiliation appears in the paper's first-party HTML. 2
- Core contribution: SingProbe is an intrinsic runtime guard that reuses hidden states produced during inference. The guard predicts query intent, response safety, and hallucination risk at token level while generation proceeds. SingStreamBench tests whether a streaming guard stays quiet on benign prefixes and detects unsafe content as it emerges. 1
- Method novelty: The paper places risk sensing inside the base forward pass instead of assigning the task to a separate guardrail model. SingProbe also uses its scores to guide constrained safe decoding and extends the setup to medical generation through SingProbe-Med. 2
- Evaluation and reported result: The paper reports approximately 2 million additional parameters and less than 0.5% extra overhead. The abstract describes SingStreamBench and hallucination and safety evaluations; the exact benchmark table should be read before comparing the reported accuracy with the other detectors here. 1
- Venue signal: The retrieved arXiv record identifies a technical report. No conference venue is stated there. 1
- Code and data: The paper lists a public GitHub repository and a Hugging Face collection. The repository page was unavailable when checked, so the links are paper-listed public links and repository access remains unverified. 2
- Researcher read: SingProbe targets a production guardrail problem: intervene during streaming generation with very little added inference. The evidence access is maximal because the method reads internal states, while the engineering boundary is white-box model integration and validation of the model-specific risk signal. The paper's reported overhead is attractive for deployment; the retrieved abstract does not establish transfer beyond its listed evaluations.
Prediction of Prediction (PoP)
- Paper and date: Prediction of Prediction (PoP): Inter-Layer Activation Fusion for Single-Pass Hallucination Detection in Large Language Models, arXiv:2608.27165v1, first submitted August 27, 2026. 3
- Authors and institutions: Himal Badu. The retrieved first-party record does not disclose an affiliation. 3
- Core contribution: PoP detects factual risk from inter-layer activation divergence during one forward pass. The method fuses hidden representations across depth, adds temporal drift features, and calibrates the resulting risk score. 3
- Method novelty: PoP targets the cost of multi-sample verification by treating layer transitions as the signal. The detector requires no additional generation pass, which keeps the intervention before the output-stage decision. 3
- Evaluation and reported result: The paper evaluates Llama-3-8B-Instruct, Qwen2.5-7B-Instruct, and Mistral-7B-Instruct on TruthfulQA, HaluEval 2.0, and FaithDial. Reported results include AUROC of 75.5% on TruthfulQA and 74.6% on HaluEval, an expected calibration error reduction from 0.142 to 0.031 after Platt calibration, less than 1.2% latency overhead, and approximately 18.4 MB of temporary activation memory. 3
- Venue signal: The paper is a single-author arXiv preprint in the retrieved record. 3
- Code and data: No code or dataset link is disclosed on the retrieved first-party page. 3
- Researcher read: PoP offers a relatively light white-box detector with calibration as an explicit output rather than an afterthought. The evaluation spans three common English benchmarks and three open-weight backbones. The stated scope remains limited to the instrumentable models and English tasks described in the paper, so the next experiment would need to test whether the activation transition signal survives model families, languages, and generation formats outside that scope.
HalluTracer: Hallucination Detection via Depth-Averaging Truth Signals
- Paper and date: HalluTracer: Hallucination Detection via Depth-Averaging Truth Signals, arXiv:2608.16353v1, first submitted August 17, 2026. 4
- Authors and institutions: Zhihao Guo, Zonghan Wu, Huan Huo, DaYong Ye, Junwei Zhang, Weiran Yao, Zhiwei Liu, Qingsong Wen, and Yilei Shao. The listed institutions include East China Normal University, University of Technology Sydney, City University of Macau, Meta, actAVA AI, Microsoft, and Squirrel Ai Learning. 5
- Core contribution: HalluTracer aggregates truthfulness evidence across every layer before the model emits an answer token. The paper argues that each layer contributes a weakly correlated signal and that averaging across depth can suppress layer-specific noise. 4
- Method novelty: The method changes the design question from selecting one supposedly informative layer to combining the full forward pass. That choice avoids an oracle-layer assumption during deployment. 5
- Evaluation and reported result: HalluTracer is evaluated on six open-source language models and five hallucination benchmarks. The abstract reports gains of one to fourteen points over matched white-box baselines. 4
- Venue signal: The retrieved arXiv record gives no conference or workshop status. 4
- Code and data: No code or dataset link is listed on the retrieved first-party page. 5
- Researcher read: HalluTracer is a useful comparison point for LayerMix and PoP because all three treat hidden states as evidence rather than asking a second model to judge the answer. HalluTracer's broad depth aggregation may reduce layer-selection fragility, while its practical boundary is the same white-box instrumentation requirement. The reported gain range is abstract-level evidence; the individual benchmark tables matter for deciding whether the gain is consistent or concentrated in a subset of models.
The Hallucination Signal Is a Mean Shift: Why Simple Probes Suffice
- Paper and date: The Hallucination Signal Is a Mean Shift: Why Simple Probes Suffice, arXiv:2608.28930v1, first submitted August 28, 2026. 6
- Authors and institutions: Jungseob Lee, Korea University; Jaehyung Seo, Konkuk University; and Heuiseok Lim, Korea University. 7
- Core contribution: The paper analyzes the geometry of hallucination signals and finds that separation between truthful and hallucinated responses is dominated by a mean-shift direction. LayerMix ranks layers by training-fold effect size and combines a contiguous band without oracle access to the best layer. 6
- Method novelty: The contribution is a simplification test. L2-regularized logistic regression and shrinkage linear discriminant analysis are used to ask how much of the apparent architectural complexity comes from covariance estimation rather than nonlinear structure. 7
- Evaluation and reported result: The controlled paired-example study uses three 7B-scale models and three datasets. The paper reports 0.952 AUROC for L2-regularized logistic regression and 0.954 AUROC for LayerMix, with approximately 35 seconds of overhead in the reported setup. 6
- Venue signal: The arXiv comment says the paper was accepted to EMNLP 2026 Main Conference. The repository also calls the implementation an EMNLP 2026 Main Conference paper; this remains an author-reported venue claim in this digest. 68
- Code and data: The public LayerMix repository has four commits and an MIT license. The repository contains the method and geometry analysis without datasets or baselines. 8
- Researcher read: LayerMix is the month's clearest argument for measuring the signal before building a larger probe. Its evidence access is internal activation data, its method cost is a small scikit-learn-style probe plus layer extraction, and its reproducibility signal is strong for the implementation but incomplete for the experimental data and baselines. The controlled paired-example paradigm is the principal boundary; the paper explicitly limits its geometry claims to that setting. 6
The four papers differ in mechanics, yet they share one engineering premise: a model can expose a usable risk signal before an external verifier has to generate a second answer. The open question is whether a cheap internal signal remains calibrated when the task, language, model access, or failure mode changes.
From detection to evidence and repair
A detector that only raises a flag leaves the reader or a downstream system with the repair decision. The next papers move closer to the unsupported span, the input evidence, or the false premise that caused the answer to drift.
SpanCalib-VLM: Calibrated Hallucination Span Detection in Vision-Language Models
- Paper and date: SpanCalib-VLM: Calibrated Hallucination Span Detection in Vision-Language Models, arXiv:2608.29974v1, first submitted August 30, 2026. 9
- Authors and institutions: Amanuel Gizachew Abebe, Shaggar Institute of Technology, Ethiopia; and Yasmin Moslem, Trinity College Dublin. 10
- Core contribution: SpanCalib-VLM combines a multimodal discriminative sequence tagger with a generative vision-language model. The tagger fuses XLM-RoBERTa-Large with a SigLIP vision encoder through cross-attention; the generative component is Qwen3.5-4B-SHROOM-SFT. 9
- Method novelty: Union-Calibrated Fusion uses candidate spans from the generative model and rescales them with calibrated probabilities from the discriminative tagger. The design trades the generative model's span recall against the tagger's speed and calibration. 10
- Evaluation and reported result: On the SHROOM-Visions English evaluation split, the paper reports Pearson calibration correlation of 0.413, overall IoU of 0.391, clean-response IoU of 0.913, and overall detection accuracy of 70.7%. 9
- Venue signal: The paper is an arXiv submission for the SHROOM-Visions shared task. The retrieved record does not state a proceedings venue. 9
- Code and data: The authors list public code, model weights, and evaluation artifacts. 10
- Researcher read: SpanCalib-VLM is aimed at multimodal evidence localization rather than a binary answer score. The relevant research question is whether calibrated span confidence can support selective editing or human review. The current evidence is one English shared-task split, and the ensemble adds both a vision encoder and a generative VLM, so the engineering cost is higher than a text-only linear probe.
Hallucination Span Detection with Input-Side Evidence Alignment
- Paper and date: Hallucination Span Detection with Input-Side Evidence Alignment, arXiv:2608.15804v1, first submitted August 16, 2026. 11
- Authors and institutions: Miyu Yamada, Institute of Science Tokyo; and Yuki Arase, whose affiliation is not clearly expanded in the retrieved first-party HTML. 12
- Core contribution: The paper defines a task that detects hallucinated output spans and aligns output tokens with evidence on the input side. An encoder-based model predicts masked output tokens from the input representation, using prediction confidence for detection and the same representation for alignment. 11
- Method novelty: The method treats faithful output tokens as predictable from the input and hallucinated tokens as less predictable. The alignment signal comes from the input representation rather than a post-hoc explanation layer. 12
- Evaluation and reported result: The paper reports experiments on conditional text generation and a human evaluation confirming the quality of predicted input-side alignments. The abstract does not name a benchmark or provide a headline numeric result. 11
- Venue signal: The retrieved arXiv record gives no conference or workshop status. 11
- Code and data: The authors provide a public HalluSpan_EviAlign repository. 12
- Researcher read: This paper connects detection to evidence retrieval at token level with a lighter encoder design than the multimodal SpanCalib-VLM pipeline. The evidence requirement is an input context from which the model can predict output tokens. The missing benchmark name and headline metric in the abstract make the full paper necessary before using the result in a quantitative cross-paper comparison.
Detecting and Repairing Hallucinations in Retrieval-Augmented Generation
- Paper and date: Detecting and Repairing Hallucinations in Retrieval-Augmented Generation, arXiv:2608.29307v1, first submitted August 29, 2026. 13
- Authors and institutions: Sai Krishna Reddy Mulakkayala, Niki van Stein, and Aske Plaat. Affiliations are not disclosed on the retrieved first-party page. 13
- Core contribution: The paper splits flagged answers into individual factual claims, checks each claim against retrieved sources, and compares three repairs: deletion, source replacement, and rewriting. 13
- Method novelty: The work moves beyond detection to an explicit grounding-preservation trade-off. Deletion removes unsupported content, replacement inserts source text, and rewriting preserves more of the original answer while changing less of its surface form. 13
- Evaluation and reported result: On RAGTruth, three language models judged 916 repaired answers. Deletion produced the largest reduction in answers containing unsupported content while retaining 64.3% of the original text. Rewriting retained 80.1% and reduced unsupported content the least. The repair step also edited 83.5% of answers annotated clean. 13
- Venue signal: The arXiv comment says the paper was submitted to BNAIC/BeNeLearn 2026 as a Type A paper. This is an author-reported submission status. 13
- Code and data: Code or dataset links are not disclosed on the retrieved first-party page. 13
- Researcher read: The 83.5% edit rate on clean answers is the operational boundary to carry into a new experiment. A detector-repair pipeline can reduce unsupported text while changing answers that were already clean. The paper's result supports a trade-off among grounding, retention, and usefulness; it supplies no automatic usefulness metric that settles which repair action a product should choose.
From Passive Response to Proactive Correction: Enhancing LLM Robustness Against Input Fact Perturbations
- Paper and date: From Passive Response to Proactive Correction: Enhancing LLM Robustness Against Input Fact Perturbations, arXiv:2608.25894v1, first submitted August 26, 2026. 14
- Authors and institutions: Ping Wang, Bingbing Xu, and Xiaofeng Meng, Renmin University of China; Xiangguo Sun, Southeast University; and Guocong Li, Zhejiang University. 14
- Core contribution: DEDUCE uses three stages: detect factual errors through fine-grained fact extraction and verification, devise a correction strategy through multi-perspective deliberation, and correct the misconception while answering. The paper also introduces MisFactQA, a dataset with factual errors of varying degrees. 14
- Method novelty: DEDUCE treats the user's premise as a possible source of hallucination. The intervention begins before the model accepts the question's facts as a basis for reasoning. 14
- Evaluation and reported result: The paper evaluates TruthfulQA, FalseQA, and MisFactQA across Qwen, LLaMA, and Gemma families. The abstract reports consistent gains in accuracy and error-correction capability, while the exact numerical improvements require the full result tables for a fair comparison. 14
- Venue signal: The arXiv comment says the paper was accepted to the EMNLP 2026 Main Conference. This is an author-reported venue claim. 14
- Code and data: The authors provide a public DEDUCE repository. 14
- Researcher read: DEDUCE changes the unit of analysis from an answer's unsupported sentence to the user's potentially false premise. That makes it relevant to question answering and assistant behavior where the model must challenge an assumption before retrieving or explaining. The added deliberation and verification stages raise runtime and orchestration costs, while the benchmark mix supplies a direct test of premise robustness.
The span and repair papers expose a second distinction. A detector can tell a system where the answer is weak, while a repair policy decides what text to keep. August's results give evidence for localization and editing trade-offs, yet usefulness and over-editing remain open evaluation targets.
System-level tests expose deployment gaps
The final group evaluates the whole RAG loop rather than only a detector. Both papers make the knowledge boundary part of the task: a product must know when the evidence supports an answer and when it should abstain.
Towards Expert Financial QA via Self-Improving RAG
- Paper and date: Towards Expert Financial QA via Self-Improving RAG, arXiv:2608.26706v1, first submitted August 27, 2026. 15
- Authors and institutions: Junjie Xiong, University of California, Berkeley; Shawheen Ghezavat, California Polytechnic State University; and Aum Hirpara, Hofstra University. 16
- Core contribution: Self-Improving RAG decomposes financial document question answering into Retrieval, Reasoning, and Judge agents. An orchestrator retries an answer when the Judge score falls below a dynamic threshold, escalating retrieval breadth, prompting, and acceptance criteria. 15
- Method novelty: The paper tests feedback-driven retry while keeping a fixed retrieval pipeline. Each decision is logged with confidence scores, which gives the system an audit trail for the financial setting. 16
- Evaluation and reported result: On FinanceBench's 150 SEC-filing questions, 66% of which require numerical calculations, the paper reports 53% correctness for single-pass RAG and 86% correctness for self-improving RAG under oracle-guided evaluation. The reported Lazarus Rate is 36.4%. In deployment mode, the acceptance rate is 31%, which exposes a large gap between the oracle-guided result and the system's practical acceptance behavior. 16
- Venue signal: The arXiv comment says the paper was accepted at the ICLR 2026 Workshop on Advances in Financial AI. This is an author-reported workshop status. 15
- Code and data: No code or dataset link is visible on the retrieved first-party paper page. 16
- Researcher read: The 86% figure belongs to an oracle-guided condition and should not be read as ordinary deployment accuracy. The 31% deployment-mode acceptance rate is the more important engineering constraint for a researcher building a financial QA loop. Retry logic can recover some answers, but the judge threshold and the evidence available at runtime determine how often the loop accepts its own output.
Why RAGs Hallucinate: Penalty-Aware Evaluation of Retrieval-Augmented Generation Systems with Knowledge-Gap Canaries
- Paper and date: Why RAGs Hallucinate: Penalty-Aware Evaluation of Retrieval-Augmented Generation Systems with Knowledge-Gap Canaries, arXiv:2608.26385v1, first submitted August 26, 2026. 17
- Authors and institutions: Alden Do Rosario, Hussein Younes, and Felipe Pires, CustomGPT.ai. 18
- Core contribution: The paper combines asymmetric scoring, knowledge-gap canaries, and failure attribution. The proposed score gives correct answers +1, wrong answers -4, and abstentions 0. Canary questions have answers verifiably absent from the knowledge base, so an answer tests unsupported parametric recall. 17
- Method novelty: The evaluation changes the product objective from answering as many questions as possible to avoiding confident answers when the corpus cannot support them. Failure attribution separates retrieval, generation, and abstention-policy failures. 18
- Evaluation and reported result: The study tests three commercial RAG systems and a no-RAG baseline on SimpleQA-Verified, using 1,000 questions with three repeats. Answering accuracy clusters between 97.0% and 98.0%, while canary violation rates range from 16.7% to 98.1% and abstention rates range from 0.2% to 11.1%. The penalty-aware score reorders the apparent ranking, and the reordering remains stable for penalty settings from k=1 to k=9. 17
- Venue signal: The retrieved arXiv record gives no conference or workshop status. 17
- Code and data: The authors list a public repository containing code, configurations, per-request logs, transcripts, and judge votes. 17
- Researcher read: Knowledge-gap canaries make abstention measurable instead of treating it as a product preference. The paper's headline accuracy range is narrow, while the canary range is wide. The comparison also carries prompt-asymmetry and judge-family limitations described by the authors, so the canary result is an evaluation instrument rather than a universal product ranking.
These two papers put the deployment question ahead of the model score. A retry loop needs a judge and an acceptance policy. A canary test needs a knowledge boundary and an asymmetric loss. Both are useful experimental additions because they expose behavior that answer-only accuracy can hide.
What gained momentum in August
Four linked directions recur across the ten papers.
- Internal signals are becoming intervention surfaces. SingProbe, PoP, HalluTracer, and LayerMix all read hidden states before an external verifier would need another generation. Their reported costs range from less than 0.5% extra overhead for SingProbe to the model- and extraction-dependent overhead reported for LayerMix. The common requirement is white-box access to activations, so the direction is strongest for open-weight or instrumentable deployments. 1346
- The unit of mitigation is moving below the answer level. SpanCalib-VLM and HalluSpan identify output spans, while the RAG repair study checks individual factual claims against retrieved evidence. A future experiment in this group needs a usefulness measure alongside span IoU or unsupported-content reduction, because editing more text can also change clean answers. 91113
- The input premise is an evidence problem. DEDUCE treats a false user premise as a failure that precedes retrieval and response generation. That intervention point differs from a RAG repair module, which acts after a response contains unsupported claims. The distinction gives researchers two separate tasks: detect unreliable inputs before reasoning, and validate generated claims against external evidence. 1314
- Deployment evaluation is penalizing confident silence violations. Self-Improving RAG reports 86% oracle-guided correctness but 31% deployment-mode acceptance. Why RAGs Hallucinate finds similar answer accuracy across systems while knowledge-gap violations differ from 16.7% to 98.1%. The numbers point to a shared measurement constraint: a system's behavior when evidence is absent needs its own test. 1617
The evidence supports a research agenda organized by failure boundary rather than by one universal hallucination score. Internal detectors ask whether the model can expose risk cheaply. Localization and repair ask what claim or span should change. System evaluations ask whether the product recognizes the edge of its evidence. Those questions can be combined in one pipeline, but their benchmarks and costs should remain separate when results are reported.
Comparison grid
| Paper | Intervention point | Evidence required | Evaluation task and reported signal | Engineering cost | Venue signal | Code/data status | Principal boundary |
|---|---|---|---|---|---|---|---|
| SingProbe | During token generation | Base-model hidden states | SingStreamBench and safety/hallucination tests; approximately 2M parameters and <0.5% overhead | Low extra inference; model-specific integration | ArXiv technical report | Paper-listed GitHub and Hugging Face links; GitHub access unverified | White-box runtime scope and benchmark transfer |
| PoP | One forward pass | Inter-layer activations | TruthfulQA 75.5% AUROC; HaluEval 74.6%; ECE 0.142 to 0.031 after calibration | <1.2% latency; 18.4 MB temporary activation memory | Single-author arXiv preprint | Not disclosed on retrieved first-party page | English open-weight models and stated tasks |
| HalluTracer | Before answer-token emission | All-layer hidden-state truth signals | Six models and five benchmarks; gains of 1–14 points over matched white-box baselines | Requires activation extraction and a probe | ArXiv preprint | Not disclosed on retrieved first-party page | Transfer beyond evaluated models and benchmarks |
| LayerMix | Before or during probe scoring | Multi-layer hidden states and labels | Three 7B-scale models and three datasets; 0.952 logistic-regression AUROC and 0.954 LayerMix AUROC | Probe and layer extraction; approximately 35 seconds in reported setup | Author-reported EMNLP 2026 Main Conference acceptance | MIT code public; datasets and baselines excluded | Controlled paired-example paradigm |
| SpanCalib-VLM | Output-span detection | Image, text, and generated candidate spans | SHROOM-Visions English; Pearson 0.413, overall IoU 0.391, clean IoU 0.913, accuracy 70.7% | Multimodal tagger plus generative VLM | SHROOM-Visions shared-task arXiv paper | Public code, weights, and evaluation artifacts | One English multimodal split |
| HalluSpan | Output-span detection and input alignment | Input representations and output tokens | Human evaluation confirms alignment quality; headline benchmark metric not reported in abstract | Encoder-based model | ArXiv preprint | Public GitHub repository | Benchmark and metric details require full-paper inspection |
| RAG detection and repair | After claim generation | Retrieved sources and factual claims | RAGTruth, 916 answers; deletion retains 64.3%, rewriting 80.1%; 83.5% of clean answers edited | Claim splitting plus repair model(s) | Author-reported BNAIC/BeNeLearn Type A submission | Not disclosed on retrieved first-party page | Automatic usefulness and over-editing |
| DEDUCE | Before reasoning on a fact-perturbed input | User premise, extracted facts, verification evidence | TruthfulQA, FalseQA, MisFactQA; abstract reports consistent gains without exact headline values | Multi-stage verification and deliberation | Author-reported EMNLP 2026 Main Conference acceptance | Public GitHub repository | Full numerical gains and deployment cost need detailed table review |
| Self-Improving RAG | After retrieval and draft answer | SEC filings, judge scores, and retry evidence | FinanceBench; 53% single-pass, 86% oracle-guided, 36.4% Lazarus Rate, 31% deployment acceptance | Three agents plus orchestration and retries | Author-reported ICLR 2026 financial-AI workshop acceptance | Not disclosed on retrieved first-party page | Oracle-guided versus deployment-mode gap |
| Why RAGs Hallucinate | Product-level evaluation | Knowledge-base boundary and repeated trials | SimpleQA-Verified; 97.0–98.0% answer accuracy, 16.7–98.1% canary violations | Evaluation harness, canaries, judges, and logs | ArXiv preprint | Code, configs, transcripts, and judge votes public | Prompt asymmetry, judge-family limits, and task-specific canaries |
The grid leaves the choice with the researcher. A project that needs streaming intervention faces a different evidence and integration problem from a project that needs claim-level repair. A benchmark that rewards answering every question measures a different product behavior from one that penalizes answers outside the knowledge base.
Coverage limits
The accessible arXiv records supplied the in-window paper set used here. The accessible OpenReview searches did not confirm an August 2026 in-window record for the target hallucination-mitigation queries, so this issue does not claim complete OpenReview coverage. No separate standalone August engineering-tool release was independently verified; public repositories attached to the papers above are included as reproducibility evidence. Venue statements drawn from arXiv comments or repository badges remain labeled as author-reported.
Fuentes de referencia
- 1SingProbe Technical Report
arxiv.org
- 2SingProbe Technical Report HTML
arxiv.org
- 3Prediction of Prediction (PoP)
arxiv.org
- 4HalluTracer
arxiv.org
- 5HalluTracer full paper
arxiv.org
- 6
- 7
- 8LayerMix repository
github.com
- 9SpanCalib-VLM
arxiv.org
- 10SpanCalib-VLM full paper
arxiv.org
- 11
- 12
- 13
- 14
- 15
- 16
- 17Why RAGs Hallucinate
arxiv.org
- 18Why RAGs Hallucinate full paper
arxiv.org
Este contenido lo produjo un canal automáticamente. Con una sola frase, Neodrop puede seguir produciendo para ti.
