Skip to content
Paper · Ecosystem

What Evidence Do Language Models Find Convincing? (Wan et al. 2024)

Quick facts

Authors
Alexander Wan, Eric Wallace, Dan Klein
Venue
ACL 2024 Main (62nd ACM, Long Papers, pp. 7468–7484)
Year
2024
DOI
10.18653/v1/2024.acl-long.403
URL
https://arxiv.org/abs/2402.11782
Reproducibility
code-and-data

Plain-English summary

Wan, Wallace and Klein gave language models pairs of real web pages that disagreed on contested questions (e.g. is aspartame linked to cancer) and measured what made the model side with one page over the other. The reversal: stylistic credibility signals humans value — scientific references, a neutral tone, formal citation style — barely moved model preferences. What dominated instead was topical relevance to the query: how directly and specifically the page answered the question being asked. Five models were tested (GPT-4, Claude Instant, three 13B open models), and the direction was consistent across all of them — so this is not a small-model artifact.

Key findings

  • Human and LLM preferences are nearly orthogonal on the stylistic-credibility axis: 'add scientific reference' and 'add more info' had a neutral-to-negative effect on which page LLMs preferred, despite being signals human readers say they value.
  • Topical relevance is the dominant lever — a 'Question Prefix' manipulation (prepending a one-line restatement of the query) produced the strongest positive win-rate effect across every model tested.
  • The direction holds across five models spanning open-source 13B (LLaMA-2 Chat, Vicuna v1.5, WizardLM v1.2) and closed-source frontier (GPT-4, Claude Instant) — this is not a small-model bug.
  • On contested, no-single-correct-answer queries, the quality of the retrieval corpus matters more than prompt engineering — the model will not do fact-checking the corpus failed to do.
  • The paper communicates effect direction and rank ordering via figures (Figure 2 bars, Figure 4 scatter), not point-estimate percentages with confidence intervals — citing a specific 'X pp lift' for any manipulation requires reading bars off the PDF, not quoting a number the authors published.

1. What this paper is — and the reversal it forces

Most GEO advice rests on a quiet assumption: if you make a page look credible — author byline, citations, neutral tone, schema markup, statistics — an LLM choosing between sources is more likely to side with you. What Evidence Do Language Models Find Convincing? (Wan, Wallace, Klein — UC Berkeley, ACL 2024) is the first study to put a number on that assumption and the first to break it.

Given two real web pages that disagree on a contested question, the LLMs they tested chose between them mainly on topical relevance — how directly and specifically the page addresses the query — and were nearly insensitive to the stylistic credibility signals humans say they value most: scientific references, a neutral tone, formal citation style.

The result is uncomfortable because the dominant practice points the other direction. The honest framing is also narrower than the headline: this is a counterfactual study on five 2023–24 LLMs against the ConflictingQA dataset, not a sweep of every 2026 production engine.

AttributeValue
AuthorsAlexander Wan, Eric Wallace, Dan Klein
AffiliationUC Berkeley (Berkeley NLP)
VenueACL 2024 Main, Bangkok — Long Papers, pp. 7468–7484
IdentifiersarXiv 2402.11782 · DOI 10.18653/v1/2024.acl-long.403
ArtifactsCode + ConflictingQA data, MIT licensed

2. The problem it formalizes

Retrieval-augmented generation hands a model multiple sources for the same query. On factual queries with one correct answer, the literature on retrieval-augmented LLMs already had a story: the model often defers to whichever source aligns with its parametric prior, or to the one cited more prominently in the prompt. On contested queries — is aspartame linked to cancer, is daycare bad for kids — there is no single correct answer to ground on, which is exactly the regime where credibility signals should matter most.

Wan et al.’s structural move is to take that regime and turn it into a paired comparison:

  • Pick a contested query with no settled answer.
  • Show the model two real web-page paragraphs that take opposing positions.
  • Ask: which one are you convinced by?

That setup isolates “what makes evidence convincing” from “what is the true answer”. The same setup also lets the authors run counterfactual edits — strip the scientific references from one paragraph, rewrite another in a neutral tone, prepend a question-restatement prefix — and measure how the model’s preference shifts. The grounding mechanism the experiment sits on top of — retrieval, prompting, citation — is the answer loop; this paper takes that mechanism as given and asks the preference question on top of it.

Worth noting up front: this paper is about the preference step, not the retrieval step. Citability covers the structural question of whether a passage can be lifted into an answer at all; citation vs mention vs link covers how that lift gets credited. Wan asks the more upstream question: given the model has two retrieved candidates in front of it, which does it pick?

3. Methodology — ConflictingQA and the feature space

The dataset, ConflictingQA, is constructed from contested queries scraped across medical, political, and social topics — the kind of question where retrieving the top-N web pages reliably surfaces opposing views:

ElementValue
Questions238 contested questions across 144 question categories
Evidence paragraphs2,208 retrieved real-world paragraphs
Comparison pairs912 paragraphs with ≥5 opposing-view comparison pairs; avg 6.54 comparisons per paragraph
LicenseMIT — github.com/AlexWan0/rag-convincingness
MirrorHuggingFace kortukov/ConflictingQA

The five LLMs evaluated span open-source 13B and closed-source frontier classes — important for §6 critique:

ModelClass
GPT-4 (gpt-4-1106-preview)Closed-source frontier
Claude Instant v1Closed-source mid-tier
LLaMA-2 Chat 13BOpen-source 13B
Vicuna v1.5 13BOpen-source 13B, Llama-2-derived
WizardLM v1.2 13BOpen-source 13B, Llama-2-derived

The feature space the paper interrogates splits into two camps:

TypeFeatures studied
Stylistic / credibility surfaceadding scientific references; rewriting in neutral tone; adding formal citations; “add more info” expansions; Flesch–Kincaid readability score; unique-token count
Content / substancetopical relevance to the query (especially the “Question Prefix” manipulation that prepends a one-line restatement of the query); embedding cosine similarity between the question and the paragraph

For each pair, the protocol records (a) a human preference label, (b) the model’s preference, and (c) how the model’s preference shifts when one paragraph is counterfactually edited along a single feature axis. The result is a per-feature win-rate curve, reported as bar charts in Figure 2 and as scatter plots in Figure 4 of the paper.

4. The reversal in detail — what moved preferences, what did not

The single most-quotable artifact from the paper is the asymmetry of the per-feature win-rate effects:

✅ Strong positive effect on LLM preference❌ Neutral-to-negative or no correlation
Question Prefix — prepend a one-line restatement of the query (strongest positive effect across all five models)Add Scientific Reference — adding citations to scientific sources had neutral-to-negative effect on win-rate
Question–paragraph embedding cosine similarity — strongly correlated with win-rate across every model except GPT-4Add More Info — appending more text in the same domain had no positive effect
Topical specificity — paragraphs that directly addressed the contested question outscored more general background paragraphsNeutral tone — rewriting in a neutral, encyclopedic register did not increase preference
Readability (Flesch–Kincaid) — no correlation with convincingness
Unique-token count — no correlation with convincingness

The phrasing the abstract uses is the cleanest one-liner the paper produces: models “rely heavily on the relevance of a website to the query, while largely ignoring stylistic features that humans find important such as whether a text contains scientific references or is written with a neutral tone”.

Why this lands uncomfortably for GEO: a non-trivial share of practitioner advice on citability and E-E-A-T optimization treats stylistic credibility signals as the primary lever on whether the model “trusts” a source. Wan et al. is the cleanest counterfactual evidence to date that — for the preference step, in the configurations they tested — that lever is faint and topical relevance is the heavy one.

5. Key findings

The headline, written in a way that survives extraction:

FindingDetail
Stylistic-credibility axis is near-nullScientific references and neutral-tone rewrites had neutral-to-negative effect on LLM win-rate
Topical relevance dominates”Question Prefix” produced the strongest positive effect across every model tested
Effect direction holds across model classesSame direction on GPT-4, Claude Instant, and three 13B open models — not a small-model artifact
Contested queries → corpus quality matters more than promptsThe model will not fact-check what the corpus didn’t filter; misinformation in the candidate set bleeds through
Alignment gap with humans is a training-objective questionThe authors flag a possible “shift in how LLMs are trained to better align with human judgements” — i.e. this is a fixable property, not a permanent one

One nuance the paper is careful with and that practitioners routinely lose: the results are direction and rank-ordering of effects, not point-estimate percentages with confidence intervals. The bars in Figure 2 and scatters in Figure 4 are the primary artifact — a citation that says “scientific references give X% lift” is not a quotable number from this paper, and any number quoted at that precision is being read off a chart, not from a published estimate.

6. GEO Wiki critique

Steel-man first. Three contributions are load-bearing and have held up:

  1. First decomposition of ‘convincingness’ into named features. Prior work on retrieval-augmented trust mostly measured whether the model deferred to retrieved sources, not which feature of a source drove the deferral. Wan et al. is the first paper to interrogate this with counterfactual perturbation.
  2. ConflictingQA is a reusable public asset. 238 contested questions × 2,208 paragraphs is a non-trivial dataset to construct, and the MIT license + GitHub release have already enabled follow-on work — Retrieval-Augmented Generation with Conflicting Evidence (Wang et al., arXiv 2504.13079, April 2025) builds directly on the conflict regime Wan opened.
  3. Direct implication for corpus governance. If preference is driven by topical relevance and not by surface credibility signals, then the leverage for high-stakes RAG sits upstream — in which sources enter the candidate pool — not in how the candidates are styled. That is the same direction C-SEO Bench points: many on-page conversational-SEO rewrites do less than the field assumes.

Bounded critique — four points:

  1. External validity is tight. All five evaluated models predate mid-2024. GPT-4 is gpt-4-1106-preview, Claude is Instant v1, and three of the five are 13B open models from the same Llama-2 lineage. There is no Claude 3.5 / 4, no GPT-4o, no Gemini, no Mistral, no LLaMA-3. A 2026 reader cannot quote this paper as evidence about today’s ChatGPT Search, Gemini, Perplexity, or Google AI Overviews and be on safe ground.
  2. Feature coverage is a subset, not the whole surface. The “credibility signals” tested are scientific references, neutral tone, formal citations, “add more info”, readability, and unique-token count. The rest of the E-E-A-T surface — verified author identity, sameAs graphs, source-domain authority, statistic density, structured-data presence — was not perturbed. The honest read of the paper is “four named stylistic features barely move five 2023–24 models”, not “credibility is irrelevant to LLMs”.
  3. The apparent contradiction with Aggarwal dissolves under measurement. Aggarwal et al. (KDD 2024) reports Cite Sources lifting Position-Adjusted Word Count by up to 30% and Quotation Addition by up to 41%. Wan reports adding scientific references barely moves preference. Both can be true simultaneously: Aggarwal measures whether a source gets pulled into a synthesized answer at all (an inclusion outcome), Wan measures which of two retrieved sources the model prefers in a head-to-head (a preference outcome). The two papers operate at different points in the answer loop. Practitioners who collapse them into one number lose this distinction.
  4. The ‘why’ is undertheorized. The paper documents the phenomenon — relevance dominates, stylistic credibility does not — but does not strongly distinguish between candidate causes: a pretraining-objective effect, an RLHF artifact, or a prompt-format dependency in how the comparisons were framed. The follow-up question why matters because it determines whether the result is durable across new training regimes or a transient property of 2023–24 models.

Position. Foundational is not turnkey. Take the direction — topical relevance and specificity dominate the preference decision, surface credibility signals barely move it — and discard any cross-engine or cross-time extrapolation as a planning input.

7. Reproducibility

Verified at draft time (2026-05-28), not assumed:

ArtifactStatus
Source codePublic — github.com/AlexWan0/rag-convincingness
Dataset (ConflictingQA)Public — same repository; third-party mirror at huggingface.co/datasets/kortukov/ConflictingQA
LicenseMIT
ModelsMix of open weights (LLaMA-2, Vicuna, WizardLM) + paid API (GPT-4, Claude Instant) — the open-weight subset is fully reproducible offline

Field value: code-and-data. Both the experimental code and the ConflictingQA dataset are openly available, so the headline experiments are independently reproducible — a meaningful strength relative to most papers in this space.

8. What it means for practitioners

Read this paper as a priority-shift signal, not as permission to abandon credibility work:

  • Shift forward in the funnel. Spend more effort on whether a passage directly and specifically answers the query — query-shaped phrasing, concrete specificity, a one-line restatement of what the section is about. Wan et al. shows this is the lever that actually moved preference in the configurations they tested.
  • Do not abandon surface credibility — relocate its job. Author bylines, sameAs identity graphs, schema markup, and source-domain authority were not in Wan’s perturbation set. They may still affect whether your page is retrieved at all (the upstream half of citability) and whether retrieved content survives a E-E-A-T trust filter. Wan only tested the preference step once two retrieved sources are in front of the model.
  • The right way to read Wan alongside Aggarwal. Aggarwal et al.’s Cite Sources / Statistics / Quotation rewrites work in part because they also raise topical relevance — adding a statistic to a passage about a numerical question makes the passage more directly responsive to that question. Read the two findings as compatible: Wan tells you what kind of content edit moves the preference step (relevance, not style); Aggarwal tells you that the substance-additions kind of credibility edits do lift inclusion, partly via the same relevance channel.
  • Do not over-extrapolate to 2026 production engines. The five models tested were 2023–24 snapshots. Read writing-for-ai-citation for the operational version of the priority shift — but treat any specific “X is dead, Y is the new lever” framing built on Wan alone as moving past what the paper actually demonstrates.

9. Further reading

References

  1. Wan, Wallace, Klein — What Evidence Do Language Models Find Convincing?, ACL 2024 Main. arXiv:2402.11782 · ACL Anthology 2024.acl-long.403 · DOI:10.18653/v1/2024.acl-long.403
  2. Code and ConflictingQA dataset — github.com/AlexWan0/rag-convincingness (MIT)
  3. Third-party dataset mirror — huggingface.co/datasets/kortukov/ConflictingQA
  4. Aggarwal et al. — GEO: Generative Engine Optimization, KDD 2024. arXiv:2311.09735
  5. Puerto et al. — C-SEO Bench: Does Conversational SEO Work?, NeurIPS 2025 D&B. arXiv:2506.11097
  6. Liu, Zhang, Liang — Evaluating Verifiability in Generative Search Engines, Findings of EMNLP 2023. arXiv:2304.09848
  7. Wang, Prasad, Stengel-Eskin, Bansal — Retrieval-Augmented Generation with Conflicting Evidence, 2025. arXiv:2504.13079

Critique & limitations

The paper's contributions are real and load-bearing: it is the first study to decompose 'what makes evidence convincing to an LLM' into named features (relevance, scientific references, neutral tone, formal citations) and measure each with counterfactual perturbations, and ConflictingQA is a public, MIT-licensed dataset of 238 contested questions × 2,208 paragraphs that downstream work has begun to reuse. The bounded reading: the five models tested all predate mid-2024 (GPT-4 is gpt-4-1106-preview; three of the five are 13B open models from the same Llama-2 lineage), so the entry cannot speak to Claude 3.5 / 4, GPT-4o, Gemini, or any 2025–26 production engine. The studied stylistic features are also a small subset of the full E-E-A-T surface — author bylines, sameAs identity graph, source-domain authority, statistic density were not tested, so the result is 'four named credibility signals barely move five 2023–24 models', not 'credibility signals do not matter to LLMs'. The apparent contradiction with Aggarwal et al. (KDD 2024), which found 'Cite Sources' lifted Position-Adjusted Word Count by up to 30%, dissolves once one notices the two studies measure different outcomes: Aggarwal measures whether you got cited at all in a synthesized answer; Wan measures which of two retrieved sources the model preferred. Both can be true. Foundational is not turnkey: take the direction (relevance and specificity dominate the preference decision) and discard any cross-engine or cross-time extrapolation.

Frequently asked questions

What does the paper actually claim?
Given two real web pages disagreeing on a contested question, LLMs decide which one to side with mostly on topical relevance (how directly the page addresses the query). Stylistic credibility signals that humans value — adding scientific references, switching to a neutral tone, formal citation style — barely move the model's choice. The effect direction holds across five models from open-source 13B to GPT-4 and Claude Instant.
Does this mean E-E-A-T does not matter to LLMs?
No — and quoting the paper that way is the most common over-read. Wan et al. tested four specific stylistic features on five 2023–24 models. The wider E-E-A-T surface — author identity, sameAs graphs, source-domain authority, statistic density — was not tested. The honest read is: four named credibility signals barely moved these models, not 'credibility is irrelevant'.
Why does this seem to contradict Aggarwal et al. (KDD 2024) on 'Cite Sources'?
Aggarwal showed adding citations lifts the chance you get cited in a synthesized answer. Wan showed adding citations barely moves which of two retrieved pages the model prefers. The two studies measure different outcomes — being included in the answer versus being chosen over a competitor. Both findings can be true at once.
What should a practitioner actually do with this?
Shift content effort forward in the funnel: spend more on how directly and specifically a passage answers the query (relevance, specificity, query-shaped phrasing) and less on surface credibility packaging (author bios, sameAs graphs, formal citation style) as a way to win head-to-head against a competing source. Surface credibility may still help you get retrieved at all — Wan only tested the preference step once two sources are already in front of the model.
Is the dataset and code available?
Yes. The code and ConflictingQA dataset are at github.com/AlexWan0/rag-convincingness under MIT license, and a third-party mirror of the dataset is on HuggingFace (kortukov/ConflictingQA). The headline experiments are independently reproducible.

Related work

Sources

Primary

  1. What Evidence Do Language Models Find Convincing? (Wan, Wallace, Klein 2024) · arXiv / ACL 2024 Main · 2024-02-19
  2. What Evidence Do Language Models Find Convincing? (ACL Anthology) · Association for Computational Linguistics · 2024-08-11
  3. ConflictingQA — official code and data repository (rag-convincingness) · Alexander Wan / GitHub

Secondary

  1. ConflictingQA — third-party HuggingFace mirror · HuggingFace
  2. GEO: Generative Engine Optimization (Aggarwal et al. 2024) · arXiv / KDD '24
  3. C-SEO Bench: Does Conversational SEO Work? (Puerto et al. 2025) · arXiv / NeurIPS '25 D&B
  4. Evaluating Verifiability in Generative Search Engines (Liu et al. 2023) · arXiv / EMNLP '23 Findings
  5. Retrieval-Augmented Generation with Conflicting Evidence (Wang et al. 2025) · arXiv
Last updated: 2026-05-28 Authors: Ray Yang Topic: Ecosystem