Context Faithfulness

70 beliefs (70 IN, 0 OUT)

The Context Faithfulness topic addresses a central problem in modern LLM usage: models frequently favor their parametric (memorized) knowledge over information explicitly provided in the input context, producing outputs that are unfaithful to the source even when accurate. This matters because it undermines the reliability of retrieval-augmented generation, instruction-following, and any pipeline where the context is supposed to be the authoritative source. The beliefs establish that the phenomenon is not an artifact of poorly constructed counter-evidence (prior work using word-level entity substitution produced incoherent text that models could trivially reject, per chameleon-prior-work-incoherent-counter), but a genuine confirmation bias that grows monotonically with the proportion of parametric memory among all evidence (chameleon-quantity-mr-monotonic) and intensifies as the absolute count of supporting evidence increases even at fixed ratios (chameleon-quantity-amplifies-bias). The Xu et al. 2024 survey formalizes this within a three-type taxonomy—context-memory, inter-context, and intra-memory conflict (three-conflict-types-cm-ic-im, xu2024-three-conflict-types-taxonomy)—and identifies temporal misalignment and misinformation pollution as the two primary causes (cm-two-primary-causes). A key conceptual distinction drawn throughout is that faithfulness (grounding in provided context) is separate from accuracy (producing the correct answer), since a model can be accurate via parametric recall yet entirely unfaithful (zhou-faithfulness-distinct-from-accuracy).

The beliefs cluster around three complementary intervention strategies, all of which are training-free and operate at inference or prompt time. First, Context-Aware Decoding (CAD, NAACL 2024, cad-authors-and-affiliations) modifies the sampling distribution by subtracting the context-free logit from the context-conditioned logit, scaled by a contrastive strength parameter α, in a structure explicitly analogous to classifier-free guidance in diffusion models (cad-core-decoding-formula, cad-classifier-free-guidance-analogy). CAD is a contrastive ensemble of the same model's two logit vectors rather than a blend of different models (cad-contrastive-ensemble-same-model), which distinguishes it from DExperts and contrastive decoding (cad-distinguishes-from-dexperts). Its theoretical grounding uses Pointwise Mutual Information and a product-of-experts distribution that must be softmax-renormalized to form a valid probability (cad-pmi-theoretical-grounding, cad-softmax-renormalization-required). Empirically, CAD yields its largest gains in knowledge-conflict settings where context contradicts training-time priors (cad-knowledge-conflict-greatest-gain), with improvements scaling with model size because larger models lean more heavily on parametric memory (cad-gain-scales-with-model-size, cad-model-size-benefit-knowledge-conflict); GPT-Neo 20B achieves +128% on NQ-Swap (cad-gpt-neo-20b-nqswap-gain) and LLaMA-30B gains +21% ROUGE-L on CNN-DM (cad-llama30b-cnn-dm-results). The cost is two forward passes per token (cad-two-forward-passes-per-token), and the method becomes a no-op if the context is conditionally independent of generation given the prompt (cad-conditional-independence-noop). Second, the Zhou et al. EMNLP 2023 prompting framework (zhou-2023-emnlp-usc-microsoft-research) combines opinion-based and instruction-based prompts with counterfactual demonstrations, reducing the Memorization Ratio on Natural Questions from 35.2% to 3.0% for GPT-3.5 (zhou-memorization-ratio-reduced-35.2-to-3.0, zhou-2023-memorization-ratio-formula) and showing that counterfactual demonstrations can outperform factual ones as few-shot exemplars (zhou-2023-counterfactual-demos-outperform-factual). This approach is fully black-box compatible (zhou-black-box-api-compatible, zhou-2023-no-fine-tuning-no-whitebox), though smaller models (≤6.7B) tend to overabstain under opinion prompts (zhou-small-models-overabstain-opinion-prompts, zhou-2023-smaller-llm-opinion-degrades-abstention). Third, the Xie et al. ICLR 2024 "chameleon/sloth" study (chameleon-iclr-2024) provides a diagnostic framework with five steps (chameleon-five-step-framework) and finds that model behavior is dual: LLMs are receptive to coherent single-source counter-memory but strongly confirmation-biased when both supporting and conflicting evidence coexist (chameleon-dual-behavior-chameleon-sloth), with GPT-4 and Vicuna-33B being the most resistant to counter-memory (chameleon-gpt4-vicuna-resist-counter) and evidence-order sensitivity varying by model (chameleon-order-sensitivity-model-dependent).

Several cross-cutting distinctions are important. CAD, the Zhou prompting methods, and the chameleon diagnostic are independent contributions that address the same underlying failure mode from different angles—decoding distribution, prompt engineering, and behavioral measurement respectively—and are not presented as competing but as complementary. The Xie et al. 2021 beliefs (xie-2021-delimiter-deterministic-emission, xie-2021-mixture-of-hmms-setting, xie-2021-tv-distance-bound-assumption-3, xie-2021-in-context-predictor-argmax, xie-2021-prompt-structure-delimiter, xie-2021-gpt3-lambada-triviaqa-improvement) concern a theoretical in-context learning analysis via mixture-of-HMMs and appear to serve as a background premise for understanding how pretraining distributions condition on prompts, rather than a direct intervention for context faithfulness. RAG is noted not to eliminate context-memory conflict because parametric weights remain unchanged; it merely adds a new potential contradiction source (rag-does-not-eliminate-cm-conflict). The evidence that models genuinely read context (not just re-rank retrieval) is supported by accuracy scaling with document-relevance count independently of BM25 recall (context-faithfulness-evidence). All beliefs in this topic are currently IN; none have been retracted, so the full constellation of claims stands as a coherent and mutually consistent set of knowledge about the problem and its mitigations.