REVIEW 4 major objections 5 minor 2 cited by
Faithful, Unfaithful or Ambiguous? Multi-Agent Debate with Initial Stance for Summary Evaluation
T0 review · 4 major / 5 minor · reviewed 2026-08-08 · deepseek-v4-flash
Pith's one-line read Assigning LLM summary evaluators randomly chosen "faithful" or "unfaithful" starting positions and letting them debate improves error detection over standard prompts, while also exposing summaries that are genuinely ambiguous rather than…
desk verdict A useful empirical paper with a real effect, but the missing single-model “argue both sides” control means the gains are not cleanly attributable to multi-agent debate. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is MADISSE, a three-stage evaluation pipeline: initialization assigns each evaluator agent a fixed stance (uniformly, so half begin with "faithful" and half with "unfaithful"), debate lets four agents exchange arguments for up to three rounds with shuffled chat histories and shared guidelines, and adjudication has judges read the final arguments and reach a label by majority vote. The paper also introduces a second object, the ambiguity taxonomy, a coarse-to-fine scheme grouping implicit reasoning phenomena, meaning phenomena, and context phenomena into 16 types, which is used both to annotate data and to prompt an LLM to decide whether sound arguments exist on both sides of the faithfulness question.
What would settle it
Run MADISSE with the same initial stances but replace each round's counter-arguments with paraphrased repeats of previous arguments: if balanced accuracy stays high, the gain is not coming from genuine evidence exchange. Alternatively, measure how often agents that start on the wrong stance switch to the correct label after reading the other side; if switches are rare and the gain comes only from the seeded unfaithful agents arguing well, the debate is functioning as ensemble sampling rather than persuasion.
Extended reading notes
Core claim
The central claim is that a multi-agent debate in which half the evaluator agents start with the imposed stance "faithful" and half with "unfaithful" produces more diverse arguments, identifies more errors, and yields labels better aligned with human annotation than asking a single LLM or running a debate without forced stances. In the paper's experiments with Llama3-70B-instruct, balanced accuracy rises from 68.2 to 75.1 on MeetingBank and from 68.1 to 75.1 on XSum, with Krippendorff alpha on MeetingBank rising from 0.38 to 0.50; running three simultaneous independent sessions pushes MeetingBank balanced accuracy to 78.1. The paper further claims that many summaries are not cleanly faithful or unfaithful, defines ambiguity as a summary admitting multiple correct interpretations that lead to opposing faithfulness judgments, provides a taxonomy of 16 ambiguity types, and shows that an LLM reading the debate arguments detects these ambiguous cases at 71.4 balanced accuracy. Filtering human-annotated ambiguous sentences out of the evaluation set improves the measured agreement of every evaluator, with the largest gap for the debate approach.
Load-bearing premise
The load-bearing premise is that forcing an LLM to argue for a randomly assigned side surfaces true evidence about the summary, so the majority vote over the debate is more accurate than an unforced judgment and is not just counting whichever side argued more fluently.
Editorial extensions
If this is right
- Automatic summary faithfulness evaluation can be improved without training or fine-tuning by structuring the prompting process as a multi-agent debate with forced opposing initial stances.
- Because the debate produces written arguments, the final label comes with explanations, addressing the explainability gap of overlap-based and fine-tuned metrics.
- The faithfulness judgment of a summary should be reported with an ambiguity axis: filtering out ambiguous summaries raises model-human agreement, for example Krippendorff alpha on MeetingBank from 0.52 to 0.67 for the zero-shot baseline and from 0.53 to 0.71 for the debate approach.
- The debate approach lowers the false negative rate, meaning it catches more errors, at the cost of a higher false positive rate, and the paper attributes a meaningful share of that extra sensitivity to ambiguous summaries rather than to evaluator mistakes.
- The approach transfers across underlying LLMs, with the same performance ordering reported for GPT-4o-mini and for a smaller Llama-3-8b model, so the gain is tied to the debate structure rather than to one model's prompting behavior.
Reading between the lines
- A testable consequence the paper leaves implicit is whether the gain comes from genuine evidence exchange or simply from stance diversity: a variant that freezes the initial stances but prevents agents from reading each other's arguments would separate those two sources.
- The ambiguity detector could be reused as a general test-time filter for LLM evaluation pipelines: run the debate, keep only instances where the opposing arguments are one-sided, and report faithfulness only on those.
- The uniform stance split is a deliberate choice, and the paper's own appendix shows that skewing the split trades false positives against false negatives; a natural extension is to calibrate the assigned stance ratio to a domain's expected error rate.
- Since the ambiguity annotations cover only sentence-level MeetingBank instances, an open question is whether ambiguity spans full summaries and whether the taxonomy transfers to other domains such as medical or legal summarization.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes MADISSE, a multi-agent debate framework for LLM-based summary faithfulness evaluation. Evaluator agents are randomly assigned initial stances (faithful or unfaithful), argue in up to three debate rounds, and a separate adjudicator makes the final call, optionally with multiple simultaneous sessions aggregated by majority vote. The authors report improved balanced accuracy and Krippendorff alpha over zero-shot, chain-of-thought, self-consistency, and debate-without-initialization baselines on TofuEval MeetingBank/MediaSum and AggreFact CNN/XSum. They also introduce an 'ambiguity' dimension for faithfulness evaluation, provide a 16-type taxonomy, annotate 770 MeetingBank sentences for ambiguity, and report an automatic ambiguity detector that uses the debate arguments (71.4 BAcc). Filtering ambiguous cases from evaluation improves model-human agreement.
Significance. If the reported gains hold, MADISSE is a practical contribution to LLM-based summary faithfulness evaluation, showing consistent improvements across four datasets and two underlying LLMs (Llama3-70B in the main text, GPT-4o-mini and Llama-3-8b in the appendix). The paper also makes a useful conceptual point that some summaries admit multiple plausible interpretations leading to opposing faithfulness judgments, and it contributes a detailed taxonomy and a human-annotated ambiguity dataset on MeetingBank. The release of code and data is a strength. However, the central causal claim—that the gains come from multi-agent debate dynamics rather than from forced two-sided argumentation—is not yet established, and the absence of any variance or significance reporting makes the magnitude of the headline improvements uncertain.
major comments (4)
- [§3, §5.2, Table 3 and Table 35] The paper attributes the accuracy gains to multi-agent debate, but MADISSE differs from all baselines in two bundled components: (i) forced two-sided argumentation from random initial stances, and (ii) multi-round interaction among agents. The MADISSE-wo-initialization baseline controls for debate without stances, but there is no control that provides forced two-sided argumentation without debate, e.g., a single-LLM prompt that first argues for faithfulness, then against faithfulness, then adjudicates. This control is necessary because Table 35 shows the main effect is largely a recalibration: on MediaSum, zero-shot has FPR ≈ 0 and FNR 86.2%, while MADISSE has FPR 16% and FNR 50.9%, which is consistent with prompting the model to search for errors rather than with debate-specific information exchange. Without this ablation, the attribution of the gains to the multi-agent debate component is not established.
- [Table 3 and Appendix D] No error bars, confidence intervals, seeds, or significance tests are reported for any of the main results. Many improvements are moderate in absolute terms (e.g., MeetingBank BAcc from 68.2 to 75.1, XSum from 68.1 to 75.1), and the self-consistency baseline on XSum with GPT-4o-mini (74.63) nearly matches MADISSE (72.86), so point estimates alone are insufficient to conclude that MADISSE is systematically better. The authors should report variance across at least several runs and state whether the observed differences are stable.
- [§4.3, Table 4, Figure 3] The ambiguity detector that uses debate arguments relies on arguments produced by agents with forced opposite stances. Since both faithful and unfaithful arguments are manufactured by construction, the presence of 'sound arguments' on both sides may partly reflect the initialization rather than genuine ambiguity. A control that feeds the same detector arguments produced without stance forcing—or from a single LLM asked to argue both sides—is needed to support the claim that debate arguments help identify ambiguities. Additionally, the filtering experiment in Figure 3 removes instances using gold ambiguity labels, not the proposed automatic detector; as presented, it shows that the ambiguity construct affects evaluator agreement, but it does not validate the automatic detector for filtering in practice.
- [Appendix B.2, §4.2] The binary ambiguity annotation has raw inter-annotator agreement of approximately 0.40 before expert adjudication, with final Cohen's Kappa of approximately 0.73 after experts made the final call. The paper should report the proportion of cases where expert adjudication overruled the annotators and discuss whether the 'ambiguity' construct is robust enough to serve as a ground-truth dimension for automatic detection. This is not a fatal issue, but it is load-bearing for the ambiguity claims because the detector is trained and evaluated against this adjudicated label.
minor comments (5)
- [Figure 6 caption] Figure 6 is captioned 'FPR and FNR results pre and post filtering the ambiguous cases' but the figure panels are labeled BAcc and K-alpha; the caption and figure labels are inconsistent.
- [Table 34] The table caption refers to 'MADISSE wo. random initialization' while the main text and Table 3 use 'MADISSE wo ini- tialization'; please unify terminology.
- [§3.1] The sentence 'It can also help with ambiguity detection later discussed in Section 4)' has an unmatched closing parenthesis.
- [Appendix C, Table 26] The zero-shot prompt in Table 26 instructs the model to 'go over each sentence of the summary one by one' but the summary-level evaluation uses full summaries; please clarify whether the prompt is the same for summary-level and sentence-level settings.
- [§5.3] The evaluation criteria section defines BAcc and Krippendorff alpha but does not define 'K-alpha' abbreviation at first use; also, the relationship between K-alpha and human agreement could be stated more precisely.
Circularity Check
No significant circularity: the core faithfulness results are benchmarked against external human labels, and the ambiguity detector performs substantive soundness filtering rather than merely reading off forced stances.
full rationale
The paper's central faithfulness-evaluation claim is not circular. Table 3 compares MADISSE against human labels on external benchmarks (TofuEval MeetingBank/MediaSum and AggreFact CNN/XSum), and the method does not fit any parameter to those labels: the final label is produced by majority-vote adjudication over LLM agent arguments, not by a learned or calibrated predictor. The improvement over zero-shot, CoT, self-consistency, and debate-without-initialization baselines is an empirical outcome that could have gone the other way, so it is not forced by construction. The ambiguity-detection result in Section 4.3 is also not a definitional tautology. Although random stance initialization guarantees that both faithful and unfaithful arguments are generated for every summary, the detector prompt (Table 32) explicitly instructs the model to check whether the arguments are sound and to consider only sound ones; a non-ambiguous summary can therefore be correctly labeled non-ambiguous even though both stances are present in the input. The gold ambiguity labels come from human annotation with expert adjudication (Section 4.2), providing external ground truth for Table 4. The paper's self-citations (notably TofuEval, Tang et al. 2024b, and FineSURE, Song et al. 2024) are used as dataset and related-work references, not as load-bearing mathematical or theoretical justifications; no uniqueness theorem or ansatz is imported from the authors' prior work. The mildest concerns are evaluation-design issues rather than circular reductions: the stance-distribution analysis in Appendix D.2 selects a configuration on MediaSum, and the ambiguity detector uses the same taxonomy in its prompt as was used to define the task. Neither makes any reported number equal to its input by construction. Overall, the derivation chain is self-contained against external benchmarks, so the appropriate circularity score is low.
Assumptions & free parameters
free parameters (5)
- Initial stance distribution =
uniform (50/50)
- Debate rounds n =
3
- Evaluator agents per session =
4
- Simultaneous sessions m =
3
- Ambiguity threshold for self-consistency baseline =
difference < 20
assumptions (4)
- domain assumption LLM agents can produce useful justifications for an assigned stance, and the quality of these justifications is informative for faithfulness
- domain assumption Majority voting of adjudicators over agent arguments improves decision quality over single agent judgment
- domain assumption Ambiguity is a binary, annotatable property of (document, summary) pairs, independent of the evaluator
- domain assumption The gold labels in TofuEval and AggreFact for non-ambiguous summaries are correct
invented entities (1)
-
Ambiguity evaluation dimension
independent evidence
Cite this review
Pith. "Pith review of Faithful, Unfaithful or Ambiguous? Multi-Agent Debate with Initial Stance for Summary Evaluation." pith.science (2026). https://pith.science/paper/HVJYBVQG
@misc{pith2026250208514,
author = {Pith},
title = {Pith review of: Faithful, Unfaithful or Ambiguous? Multi-Agent Debate with Initial Stance for Summary Evaluation},
year = {2026},
howpublished = {\url{https://pith.science/paper/HVJYBVQG}},
note = {Machine review of arXiv:2502.08514}
}
read the original abstract
Faithfulness evaluators based on large language models (LLMs) are often fooled by the fluency of the text and struggle with identifying errors in the summaries. We propose an approach to summary faithfulness evaluation in which multiple LLM-based agents are assigned initial stances (regardless of what their belief might be) and forced to come up with a reason to justify the imposed belief, thus engaging in a multi-round debate to reach an agreement. The uniformly distributed initial assignments result in a greater diversity of stances leading to more meaningful debates and ultimately more errors identified. Furthermore, by analyzing the recent faithfulness evaluation datasets, we observe that naturally, it is not always the case for a summary to be either faithful to the source document or not. We therefore introduce a new dimension, ambiguity, and a detailed taxonomy to identify such special cases. Experiments demonstrate our approach can help identify ambiguities, and have even a stronger performance on non-ambiguous summaries.
Figures
Figures from the paper (3 more)
Forward citations
Cited by 2 Pith papers
-
Towards Multi-dimensional Evaluation of LLM Summarization across Domains and Languages
MSumBench is a new English/Chinese benchmark that grades summaries across six domains on faithfulness, completeness, and conciseness, using domain-specific key-facts and multi-agent-debate-assisted human annotations, ...
-
Beyond Single Models: Enhancing LLM Detection of Ambiguity in Requests through Debate
A leader-follower multi-agent debate protocol improves ambiguity detection for two of three tested LLMs, but the reported results lack error bars, a clear success metric, and contain internal numerical inconsistencies.
Reference graph
Works this paper leans on
-
[1]
There is confusion about what specific claim is actually being made
-
[2]
The claim cannot be evaluated reliably against the source document
-
[3]
The range of possible interpretations is so broad that it becomes challenging to determine if the summary accurately represents the source information. The key aspect is that the vagueness creates a meaningful obstacle in assessing the factual accuracy of the summary.Minor instances of underspecification that don’t significantly impact evaluability should...
-
[4]
An exclamation or interjection
-
[5]
A command or request
-
[6]
Any other type of non-declarative expression The key aspect is that the summary does not present a statement that can be directly evaluated for factual accuracy against the source document. This creates an evaluability issue because there’s no clear assertion to assess for truthfulness or correspondence with the source information, or if there is an impli...
-
[7]
A sentence fragment or incomplete thought
-
[8]
A question (rhetorical or otherwise)
Show all 67 references
-
[9]
A plain description without any claim
-
[13]
Use of metaphorical or highly figurative language that doesn’t have a clear, literal correspondence to the source document’s content
-
[14]
Referential ambiguities not covered by the existing ambiguity categories, such as unclear pronoun references without clear antecedents in the summary or its context
-
[15]
The key aspect is that these phenomena should create a significant obstacle in evaluating the factual accuracy of the summary against the source document
Unusual or creative uses of language that introduce interpretive challenges not captured by other categories. The key aspect is that these phenomena should create a significant obstacle in evaluating the factual accuracy of the summary against the source document. The issue sh...
-
[16]
Merging separate topics or events as if they were a single issue
-
[17]
Combining attributes or characteristics of different entities or concepts
-
[18]
Blending outcomes or decisions related to distinct matters. The key aspect is that this merging of information creates a meaningful evaluability issue by misrepre- senting relationships between different pieces of information or making it challenging to accurately assess the f...
-
[19]
Inferring causal relationships not explicitly stated in the source
-
[20]
Reordering information in a way that implies a different significance or relationship than in the original context
-
[21]
Drawing conclusions about the overall meaning or importance of information based on its placement or context in the source document. The key aspect is that these phenomena should create a significant obstacle in evaluating the factual accuracy of the summary against the source...
-
[22]
Subjective interpretations of objective information that make factual assessment difficult
-
[23]
Reliance on specialized cultural or contextual knowledge not provided in the source document and not common enough to be considered general knowledge
-
[24]
The initial stage (before the adjudication step) has an IAA of ≈ 0.40 which highlights the importance of the adjudication step to achieve high- quality data
The final dataset has a high inter-annotator agreement (Cohen’s Kappa) of ≈ 0.73 on binary labels. The initial stage (before the adjudication step) has an IAA of ≈ 0.40 which highlights the importance of the adjudication step to achieve high- quality data. C Prompts We listed ...
-
[25]
street festival
Novel or unique challenges in comparing the summary to the source that aren’t captured by existing categories. It’s crucial to note that factual errors alone do not create an evaluability issue. The key aspect is that these phenomena should create a significant obstacle in det...
2015
-
[26]
That February is indeed summer in Australia (opposite to the Northern Hemisphere)
-
[27]
That summer in Victoria can be extremely hot, potentially affecting outdoor events
-
[28]
Other evaluability issue
The typical weather patterns in Whittlesea specifically. This information isn’t common knowledge for many people outside Australia, and it’s not provided in the source. An evaluator would need to do external research to verify these claims, making it challenging to assess the ...
2023
-
[29]
A sufficiently sophisticated evaluator, with the ability for (2) and (3)
-
[30]
Comprehension of the source of truth
-
[31]
Comprehension of the statement In principle, then, there are three variables that could prevent successful factual evaluation:
-
[32]
The evaluator is not sophisticated enough for complete comprehension/evaluation
-
[33]
The source of truth poses barriers to comprehension/evaluation
-
[34]
The statement poses barriers to comprehension
The statement poses barriers to comprehension/evaluation These three variables are inter-related. For instance, (1) depends on the severity of the barriers noted in (2) and (3). But for the current task, the primary focus will be on (3), although you will also be registering y...
-
[35]
Implicit reasoning phenomena
-
[36]
Carefully read all the definitions and refer to the examples provided in the last column
(Other phenomena) Refer to all the subtypes of these categories in the table below (taxonomy table as shown in Table 6). Carefully read all the definitions and refer to the examples provided in the last column. When referring to examples, ambiguous examples are examples that a...
-
[48]
</guidelines> <doc> %s </doc> <summary> %s </summary> <chat_history> You (Agent 1): The summary is faithful
If even a single part of the summary is factually inconsistent, then the whole summary is factually inconsistent. </guidelines> <doc> %s </doc> <summary> %s </summary> <chat_history> You (Agent 1): The summary is faithful. Agent 2: The summary is unfaithful. Agent 3: The summa...
-
[61]
</guidelines> <doc> %s </doc> <summary> %s </summary> <chat_history> %s </chat_history> Determine if the summary is factually consistent with the document provided above
If even a single part of the summary is factually inconsistent, then the whole summary is factually inconsistent. </guidelines> <doc> %s </doc> <summary> %s </summary> <chat_history> %s </chat_history> Determine if the summary is factually consistent with the document provided...
-
[74]
</guidelines> <doc> %s </doc> <summary> %s </summary> <chat_history> %s </chat_history> Go over the agents responses, summarize them by saying who agrees/disagrees
If even a single part of the summary is factually inconsistent, then the whole summary is factually inconsistent. </guidelines> <doc> %s </doc> <summary> %s </summary> <chat_history> %s </chat_history> Go over the agents responses, summarize them by saying who agrees/disagrees...
-
[89]
</taxonomy> Go over the agents responses, summarize them by saying who agrees/disagrees
Other context phenomenon: Some other challenge related to the relationship between the summary’s meaning and the context(s) in the source document. </taxonomy> Go over the agents responses, summarize them by saying who agrees/disagrees. Then looking at the agents responses, ho...
-
[90]
If individual facts are correct, the summary is factually consistent regardless of its comprehensiveness
You should aim for accuracy and not comprehensiveness. If individual facts are correct, the summary is factually consistent regardless of its comprehensiveness
-
[91]
A summary does not imply that its facts are the only ones mentioned in the dialogue
-
[92]
The summary is factually inconsistent if it makes an assumption that is not supported (explicitly or implicitly) by the document
-
[93]
The summary is factually inconsistent if it includes any information (even a minor detail) that is not present in the document or can not be entailed from the document
-
[94]
The summary is factually consistent if it is a paraphrase of the document and it does not change the meaning of what is stated in the document
-
[95]
Details (even crucial) that are present in the document but omitted in the summary do not lead to factual inconsistency
-
[96]
lack of coherence between summary sentences does not necessarily lead to factual inconsistency
-
[97]
The summary should not hallucinate new entities such as new people or locations not mentioned in the document otherwise it is factually inconsistent
-
[98]
The summary does not have to provide the context or focus only on the main points of the document, it can only focus on a minor concept
-
[99]
The summary is factually consistent even if it omits crucial details from document
-
[100]
The addition of details that are not mentioned in the document or can not be entailed from it, makes the summary factually inconsistent
-
[101]
Every word or phrase of the summary (or its paraphrase) should be present in the document otherwise the summary is factually inconsistent
-
[102]
</guidelines> <taxonomy>
If even a single part of the summary is factually inconsistent, then the whole summary is factually inconsistent. </guidelines> <taxonomy>
-
[103]
Deduction: The summarizer has made a logical deduction (well or poorly), utilizing premises from the source document to draw a conclusion that cannot be directly traced to the source document
-
[104]
Common-sense inference: The summarizer appears to have made an inference based on common sense notions
-
[105]
Value-based inference: The summarizer appears to have made an inference based on assumed values
-
[106]
Other implicit reasoning phenomenon: Some other kind of implicit reasoning took place that affects the summary’s evaluability
-
[107]
Hypernymy/Generalization: A more general meaning is used in the summary than is observed in the source document (for the same topic)
-
[108]
Hyponymy/Specialization: A more specific meaning is used in the summary than is observed in the source document (for the same topic)
-
[109]
The meaning has not technically changed, but the way the meaning is built changed
Synonymy/Paraphrasing: Meaning from the source document is paraphrased in such a way that interpretation is challenged. The meaning has not technically changed, but the way the meaning is built changed
-
[110]
Structural ambiguity: A phrase or sentence in the summary has multiple valid parses (multiple valid syntactic structures), and it is not obvious which parse is intended
-
[111]
Lexical ambiguity: A word in the summary has multiple valid interpretations, and it is not obvious which meaning is intended
-
[112]
Other types of ambiguity include scope ambiguity and pronoun reference ambiguity
Other ambiguity phenomenon: There is another type of linguistic ambiguity in the summary that is likely to cause difficulty in interpretation. Other types of ambiguity include scope ambiguity and pronoun reference ambiguity
-
[113]
For this use case, it would be so many realities that there is confusion about what claim is actually being made and whether the claim can be evaluated reliably
Vagueness: The meaning of part of the summary is underspecified, resulting in many realities being compatible with the claim made. For this use case, it would be so many realities that there is confusion about what claim is actually being made and whether the claim can be eval...
-
[114]
Other meaning phenomenon: There is something else about the literal meaning of the summary that may have made it challenging to assess its factuality
-
[115]
It takes on new meaning or loses its meaning outside of that context
Decontextualization: The summary puts forth or describes something outside of the context in which its meaning was meant to be interpreted. It takes on new meaning or loses its meaning outside of that context
-
[116]
(It may have done this to good effect or to bad effect.)
Conflation: The summary joins or synthesizes pieces of information that were independently relevant in the source document. (It may have done this to good effect or to bad effect.)
-
[117]
</taxonomy> Go over the agents responses, summarize them by saying who agrees/disagrees
Other context phenomenon: Some other challenge related to the relationship between the summary’s meaning and the context(s) in the source document. </taxonomy> Go over the agents responses, summarize them by saying who agrees/disagrees. Then looking at the agents responses, ho...
2024
-
[2021]
arXiv preprint arXiv:2103.06410
Mediasum: A large-scale media interview dataset for dialogue summarization. arXiv preprint arXiv:2103.06410. A Multi-agent Debate Approach Details The following sections describe more details of our proposed approach. A.1 Multi-round Debate The multi-round debate stage of MADI...
-
[2023]
Preprint, arXiv:2303.15621
Chatgpt as a factual inconsistency evaluator for text summarization. Preprint, arXiv:2303.15621. Zhao Mandi, Shreeya Jain, and Shuran Song. 2024. Roco: Dialectic multi-robot collaboration with large language models. In 2024 IEEE International Con- ference on Robotics and Autom...
2024 arXiv
Reviewed August 8, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.