Argument Quality Assessment with Large Language Models: A Pairwise Bradley-Terry Approach

Nicolás Benjamín Ocampo1, Agnes Paullate Nyiranziza2, Davide Ceolin1
1Centrum Wiskunde & Informatica, The Netherlands
2Vrije Universiteit Amsterdam, The Netherlands
n.b.ocampo@cwi.nl, paullate.nziza@gmail.com, d.ceolin@cwi.nl


Abstract

Large Language Models (LLMs) have demonstrated remarkable capabilities in tasks related to reasoning and judgment. However, assessing the quality of arguments requires a rigorous evaluation. We investigate the extent to which LLMs can effectively perform this task. We tested 12 open-weight LLMs of different sizes and families under zero-shot, few-shot, and chain-of-thought to approximate expert pairwise comparisons of argument quality across three dimensions—logical, rhetorical, and dialectic—and used these comparisons in a Bradley-Terry model to infer latent strength scores and derive a ranking of arguments. Our insights show that LLMs have promising but moderate correlation with human expert judgments, with Llama-70B obtaining the strongest alignment, reaching moderate Cohen’s \(\kappa\) = 0.493 and moderate correlations with Bradley–Terry scores derived from these annotations (Kendall, Pearson, and Spearman: 0.327–0.477). Other LLMs exhibit weak, moderate, or high alignment with Llama-70B while achieving comparable results against human experts, suggesting partial but complementary understanding of underlying quality dimensions despite differences in model size and family. Moreover, LLM predictions are stable across trial runs, with fewer than 7.75% of cases yielding different labels. Remaining variability is handled via majority voting and few-shot prompting for large-size models.

1 Introduction↩︎

Argumentation is fundamental to reasoning in various fields [1]: scientists publish discoveries together with supporting evidence, lawyers structure legal arguments to solve disputes, and political debaters rely on argumentation to gain the approval of the public. Early computational work focused on mining and evaluating arguments in well-structured texts such as essays [2] until more research shifted toward assessing argument quality [3]. A particularly effective approach within the field has been the use of pairwise comparisons, in which the annotators judge which of the two arguments is stronger based on specific criteria. These judgments can then be aggregated using statistical models, such as the Bradley-Terry (BT) model, to produce quality scores  [4] and obtain a ranking of evaluated arguments. This design reduces annotation cost and variance while providing reliable multidimensional quality scores for benchmarking automated evaluation methods. As online platforms grow, the ability to identify high-quality arguments becomes increasingly important  [5], especially for effective persuasion, decision-making, and participation in meaningful discourse. However, manually evaluating argument quality at scale remains a major bottleneck due to cost and inconsistency. Large Language Models (LLMs) offer a promising avenue for scaling argument quality assessment. LLMs demonstrated impressive capabilities in language understanding tasks, and a growing line of work explores the use of LLMs as annotators [6]—an example of LLM-as-a-judge—where the LLM is asked to evaluate text quality [7]. This strategy could enable large-scale assessments with minimal cost and time. However, whether LLMs can reliably replicate expert-level judgments is an open question. Existing research offers mixed results: some studies show that LLMs, such as GPT-3 and PaLM-2 can effectively assess certain quality aspects [6], while others found that GPT-3.5 underperformed specialized supervised models on tasks that involve ranking of arguments [8]. These contrasting findings motivate a deeper investigation into LLM-based argument quality evaluation. This study attempts to replicate expert-derived argument quality rankings from the Webis-ArgQuality-20 dataset [4]. Given that argument quality is multidimensional [3], this study will also examine the abilities of the LLMs in assessing the different quality dimensions. We aim to address the following research question (RQ):

RQ: How well can LLM pairwise comparisons reproduce expert rankings of argument quality?

We break it down through the following sub-research questions (SRQ):

  1. SRQ1: How do LLMs of different sizes and families, when using various prompting strategies, compare in their ability to evaluate arguments on quality dimensions compared against human experts?

  2. SRQ2: To what extent do LLMs of varying sizes and model families exhibit similar patterns of argument evaluation?

  3. SRQ3: How consistent are LLM-based evaluations when repeated over multiple trials?

Our contribution is an extensive evaluation of 12 open-weight LLMs from five model families (7B–104B parameters) under zero-shot, few-shot, and chain-of-thought for pairwise argument assessment across logical, rhetorical, and dialectical dimensions. Using LLM pairwise judgments, we derive Bradley-Terry rankings, being, to the best of our knowledge, the first application of Bradley-Terry ranking to LLM-based comparative judgments in argument mining. Leveraging this contribution, we derive three important insights: (i) Our results show that LLM-derived BT rankings achieve moderate correlation with human judgments (up to 0.327–0.477 across Kendall, Pearson, and Spearman), with moderate expert-level pairwise agreement (up to Cohen’s \(\kappa\)=0.493), highlighting both the promise and current limitations of LLMs as evaluators of argument quality. (ii) Other LLMs show weak-to-high alignment with the best performing model, Llama-70B, while matching human-expert performance, indicating complementary understanding of quality dimensions across models. (iii) LLM predictions are stable, with label differences in at most 7.75% across three runs. Few-shot prompting further improves stability for larger models, whereas smaller models are inherently more stable but less accurate 1.

2 Related Work↩︎

Argument quality assessment is relevant, as people tend to seek the strongest arguments to form opinions, write persuasive texts, foster agreement, and improve mutual understanding when presenting ideas to an audience [5]. To address this need, several frameworks conceptualize argument quality as a multidimensional construct. For example, the taxonomy proposed by [3] distinguishes logical, rhetorical, and dialectical dimensions of argument quality, providing a strong theoretical foundation for computational assessment. Complementing this perspective, [9], [10] emphasize deliberative norms that focus on the collaborative and constructive aspects of discourse,  [11], [12] focus on argument convincingness, and [13] operationalize argument quality through a recommendation criterion, namely whether an argument would be suitable for use, as-is, in a supporting or opposing speech.

Using these theoretical frameworks, several datasets for argument quality assessment have been proposed that vary in number of topics and arguments, ranking strategies, evaluation dimensions, research communities, number of annotators, and annotation methods [14]. Two main approaches have been adopted for evaluation: Likert or continuous scale judgments of individual arguments [3], [15][17] and, pairwise comparison setups in which annotators select the better of two arguments with respect to a given dimension [4], [11], [12], [18]. Pairwise comparisons avoid the problems of absolute ratings by not requiring assessors to assign fixed labels that are often treated as interval-scale, and instead asking them to simply choose between two items, which is easier, more consistent, and produces more reliable data [4], [19]. Subsequent scores are later obtained using a ranking function such as PageRank [20] (or variants of it [11]), Gaussian Process [21], or Bradley-Terry [22], [23].

As pairwise comparisons scale rapidly, recent studies have explored using LLMs to assess argument quality. [6], [8], [24] investigated agreement between LLMs and human annotators using models like GPT-3, GPT-3.5, and PaLM-2. [25] examined LLMs’ ability to assess argument convincingness, [26] studied the role of rationales in pairwise quality judgments, [27] proposed a multi-persona framework based on Llama models, and [28] used LLM-based ranking with medical arguments. Still, these works evaluate only a small set of LLMs, rely on Likert-scale, or focus on convincingness rather than multidimensional argument quality. In contrast, we systematically compare multiple LLM families and sizes across prompts using the broader theoretical framework of [3], operationalized through the Webis-ArgQuality-20 dataset. We assess argument quality via pairwise comparisons and aggregate judgments with the Bradley-Terry model, a well-established and computationally efficient approach [22], [23].

3 Methodology↩︎

The overall methodology consists of performing comparisons of argument pairs using zero-shot, few-shot, and chain-of-thought. Arguments are aggregated per topic (only topic-related arguments are compared), and the comparison is performed across three dimensions of argument quality.

3.1 Argument Quality Dimensions↩︎

Theoretical work in argumentation distinguishes three dimensions: logical, rhetorical, and dialectical [3], [29]. Logical quality, or cogency checks whether premises are relevant and sufficient to conclude. [30] defines logical quality as: local acceptability (are the premises worthy of acceptance?), local relevance (do the premises support or attack the conclusion?), and local sufficiency (are the premises enough to justify the conclusion?). Rhetorical quality or effectiveness measures whether the argument can persuade a target audience. Inspired by Aristotle’s rhetorical appeals, [3] further decomposes this dimension into: credibility (establishing the speaker’s authority), emotional appeal (engaging the audience), clarity (using correct and unambiguous language), appropriateness (aligning the tone and language with the topic), and arrangement (structuring the argument). Dialectic quality, or reasonableness measures the ability of the argument to help resolve a disagreement. It is further decomposed into acceptability (the audience’s acceptance of the argument), relevance (the ability of the argument to advance the discussion), and sufficiency (rebuttal to counter arguments) [30].

3.2 Pairwise Comparison via BT↩︎

Pairwise comparisons are a widely used method in statistical analysis. In argument quality assessment, this approach allows annotators to reduce cognitive load and annotation time by focusing on comparing two arguments at a time, instead of ranking a whole set. Once we obtain pairwise comparisons, we use the Bradley-Terry model to derive continuous quality scores. Given a pair of arguments \(d_i\) and \(d_j\) from the dataset, Bradley-Terry estimates the probability that the pairwise comparison \(d_i \succ d_j\) is true through the formula  [22]: \(P(d_i \succ d_j) = \frac{\gamma_i}{\gamma_i +\gamma_j}\). \(i>j\) denotes that argument \(d_i\) is preferred to \(d_j\).

4 Dataset↩︎

We use the Webis-ArgQuality-20 corpus, an argument quality dataset introduced by [4]. This gold-standard dataset comprises 1,610 texts across 20 debate topics, of which 1,271 are considered argumentative. Arguments were then subjected to 13952 pairwise comparisons (obtained via cyclic group sampling) analysis by experts (crowdsourcing), who annotated, for each topic and quality dimension (Logical, Rhetorical, or Dialectical Quality), which argument in each pair was better with respect to that specific quality dimension. These ground-truth labels were subsequently used to rank argument quality across dimensions using a Bradley-Terry model. We use the entire set of pairwise comparisons provided in the dataset in our experiments.

5 Experimental setup↩︎

We evaluate 12 open-weight models from five families: Mistral, Llama 3*, Qwen2.5, Olmo2, and Command-R, spanning parameter scales from 7B to 104B 2. Each family includes models of different sizes, enabling a controlled analysis of the effects of both model scale and architecture on output variability and inter-model agreement. We focus exclusively on open-weight models to ensure reproducibility and transparency.

We evaluate whether LLMs can replicate expert-derived argument quality rankings published for the Webis-ArgQuality-20 corpus. The approach follows the original pairwise framework where each comparison task presents the two arguments—named Argument A and Argument B–and instructs the LLM to decide which argument is better with respect to a single quality dimension. The response is restricted to the following: ‘‘A’’ if A is better, ‘‘B’’ if B is better, or ‘‘Tie’’ to indicate a tie. No additional text is allowed.

We employed three prompting strategies: zero-shot, few-shot, and chain-of-thought. Zero-shot takes as input the dimension to judge and the pairwise comparison to assess. Chain-of-thought extends the zero-shot strategy by instructing the LLM to reason internally over sub-dimensions associated with each main dimension, following the framework of [3] described in Section 3.1. Logical quality is assessed through local acceptability, local relevance, and local sufficiency; rhetorical quality through credibility, emotional appeal, clarity, appropriateness, and arrangement; and dialectical quality through acceptability, relevance, and sufficiency. Each sub-dimension is reformulated as a comparative question asking which of the two arguments exhibits more of that property, accompanied by a brief definition. The model outputs only the final label for the target dimension, not intermediate sub-dimension judgments, as evaluation is conducted at the dimension level. Thus, the sub-dimensions function as structured guidance for the model’s internal reasoning process rather than as prediction targets in their own right. Finally, few-shot uses the same definitions as zero-shot but dynamically adds, for the pair of arguments under evaluation, three annotated examples within their topic: one where “A” is chosen, one where “B” is chosen, and one labeled as “Tie”. These examples remain the same across all comparisons within that topic.

Specifically, we consider arguments A and B, and for the label A, we select the pair with the largest score difference where the score of A is higher than that of B. Similarly, we choose an example for B by selecting the pair with the largest score difference where the score of B is higher than that of A. For the Tie example, we select, from the ground-truth comparisons labeled as Tie, the pair with the smallest quality score difference for that dimension and topic. In this way, we ensure that the few-shot examples are clear-cut and avoid ambiguous examples 3.

Regarding temperature, values in the 0–1 range show no statistically significant differences in performance, while values above 1 degrade it [31]. We set temperature to 1 to balance stability and stochasticity for measuring intra-model reliability, with gains expected to generalize to lower settings [31], [32].

Given the probabilistic nature of LLMs, we evaluated each model across three independent runs using the same pairing strategy to measure prediction variability. The final label was determined by majority vote. The argument (A or B) with the highest frequency was selected; in cases where no single argument secured a majority (e.g., a three-way split or a tie involving an explicit ‘Tie’ model response), the final label was Tie.

Table 1: LLM and prompting configurations scores and annotations compared against human experts. Scores were averaged across logic, rhetoric, and dialectic dimensions, with standard deviations (\(\pm\)) reported across them. Pearson, Spearman, and Kendall coefficients measure correlation between LLM BT rankings and expert BT rankings. MAE and RMSE measure LLM-expert BT ranking differences, where lower values are better. Cohen’s \(\kappa\) and percent agreement (%) compare LLM annotations directly rather than BT scores. The best configuration per column is in bold; the second-best is underlined.
Model Prompt Pearson (\(r\)) Spearman (\(\rho\)) Kendall MAE RMSE \(\kappa\) IAA % Agreement
Mistral-7B zero 0.232 \(\pm\) 0.021 0.232 \(\pm\) 0.019 0.156 \(\pm\) 0.012 0.973 \(\pm\) 0.003 1.239 \(\pm\) 0.017 0.162 \(\pm\) 0.060 26.88 \(\pm\) 5.16
few 0.082 \(\pm\) 0.183 0.082 \(\pm\) 0.181 0.055 \(\pm\) 0.123 1.046 \(\pm\) 0.112 1.350 \(\pm\) 0.138 0.332 \(\pm\) 0.133 39.49 \(\pm\) 9.85
cot 0.221 \(\pm\) 0.034 0.213 \(\pm\) 0.033 0.143 \(\pm\) 0.022 0.967 \(\pm\) 0.021 1.248 \(\pm\) 0.028 0.095 \(\pm\) 0.051 22.39 \(\pm\) 4.47
Llama-8B zero 0.258 \(\pm\) 0.019 0.263 \(\pm\) 0.018 0.176 \(\pm\) 0.011 0.968 \(\pm\) 0.010 1.218 \(\pm\) 0.015 0.373 \(\pm\) 0.016 42.68 \(\pm\) 1.33
few 0.155 \(\pm\) 0.035 0.155 \(\pm\) 0.024 0.104 \(\pm\) 0.016 1.020 \(\pm\) 0.009 1.300 \(\pm\) 0.027 0.424 \(\pm\) 0.006 46.62 \(\pm\) 0.67
cot 0.057 \(\pm\) 0.051 0.056 \(\pm\) 0.047 0.037 \(\pm\) 0.032 1.080 \(\pm\) 0.022 1.373 \(\pm\) 0.037 0.303 \(\pm\) 0.012 37.01 \(\pm\) 1.01
Olmo2-7B zero -0.034 \(\pm\) 0.044 -0.032 \(\pm\) 0.031 -0.021 \(\pm\) 0.021 1.121 \(\pm\) 0.029 1.438 \(\pm\) 0.031 0.331 \(\pm\) 0.017 39.12 \(\pm\) 1.36
few -0.087 \(\pm\) 0.032 -0.103 \(\pm\) 0.015 -0.069 \(\pm\) 0.010 1.149 \(\pm\) 0.016 1.474 \(\pm\) 0.022 0.401 \(\pm\) 0.007 44.51 \(\pm\) 0.74
cot 0.002 \(\pm\) 0.060 -0.003 \(\pm\) 0.084 -0.002 \(\pm\) 0.056 1.105 \(\pm\) 0.048 1.412 \(\pm\) 0.042 0.356 \(\pm\) 0.031 41.07 \(\pm\) 2.44
Qwen2.5-7B zero 0.322 \(\pm\) 0.031 0.326 \(\pm\) 0.033 0.221 \(\pm\) 0.023 0.918 \(\pm\) 0.018 1.164 \(\pm\) 0.026 0.431 \(\pm\) 0.010 47.51 \(\pm\) 0.87
few 0.354 \(\pm\) 0.042 0.359 \(\pm\) 0.032 0.244 \(\pm\) 0.021 0.882 \(\pm\) 0.022 1.137 \(\pm\) 0.038 0.456 \(\pm\) 0.004 49.57 \(\pm\) 0.34
cot 0.188 \(\pm\) 0.155 0.201 \(\pm\) 0.158 0.135 \(\pm\) 0.108 1.007 \(\pm\) 0.103 1.270 \(\pm\) 0.123 0.399 \(\pm\) 0.035 44.87 \(\pm\) 2.96
Command-R-7B zero 0.370 \(\pm\) 0.067 0.363 \(\pm\) 0.068 0.247 \(\pm\) 0.048 0.887 \(\pm\) 0.051 1.122 \(\pm\) 0.059 0.417 \(\pm\) 0.007 46.34 \(\pm\) 0.62
few 0.301 \(\pm\) 0.146 0.302 \(\pm\) 0.145 0.205 \(\pm\) 0.099 0.924 \(\pm\) 0.097 1.178 \(\pm\) 0.121 0.376 \(\pm\) 0.011 43.04 \(\pm\) 1.01
cot 0.345 \(\pm\) 0.031 0.344 \(\pm\) 0.043 0.233 \(\pm\) 0.030 0.903 \(\pm\) 0.029 1.144 \(\pm\) 0.027 0.340 \(\pm\) 0.012 40.25 \(\pm\) 0.99
Mixtral-8x7B zero 0.174 \(\pm\) 0.049 0.172 \(\pm\) 0.047 0.115 \(\pm\) 0.032 1.011 \(\pm\) 0.021 1.285 \(\pm\) 0.038 0.339 \(\pm\) 0.033 40.09 \(\pm\) 2.56
few 0.233 \(\pm\) 0.170 0.246 \(\pm\) 0.150 0.166 \(\pm\) 0.103 0.951 \(\pm\) 0.094 1.233 \(\pm\) 0.137 0.392 \(\pm\) 0.063 44.22 \(\pm\) 4.88
cot 0.093 \(\pm\) 0.119 0.084 \(\pm\) 0.107 0.057 \(\pm\) 0.073 1.047 \(\pm\) 0.077 1.345 \(\pm\) 0.088 0.277 \(\pm\) 0.060 35.69 \(\pm\) 3.80
Mistral-22B zero -0.086 \(\pm\) 0.035 -0.094 \(\pm\) 0.016 -0.063 \(\pm\) 0.011 1.142 \(\pm\) 0.009 1.473 \(\pm\) 0.024 0.381 \(\pm\) 0.003 42.90 \(\pm\) 0.20
few -0.047 \(\pm\) 0.019 -0.053 \(\pm\) 0.012 -0.035 \(\pm\) 0.008 1.128 \(\pm\) 0.009 1.447 \(\pm\) 0.013 0.378 \(\pm\) 0.007 42.65 \(\pm\) 0.47
cot -0.072 \(\pm\) 0.060 -0.084 \(\pm\) 0.045 -0.056 \(\pm\) 0.030 1.141 \(\pm\) 0.031 1.464 \(\pm\) 0.041 0.370 \(\pm\) 0.013 42.14 \(\pm\) 0.94
Olmo2-32B zero 0.402 \(\pm\) 0.018 0.377 \(\pm\) 0.024 0.257 \(\pm\) 0.017 0.860 \(\pm\) 0.010 1.094 \(\pm\) 0.017 0.366 \(\pm\) 0.036 42.41 \(\pm\) 2.87
few 0.296 \(\pm\) 0.081 0.295 \(\pm\) 0.083 0.199 \(\pm\) 0.057 0.937 \(\pm\) 0.049 1.185 \(\pm\) 0.068 0.392 \(\pm\) 0.023 44.25 \(\pm\) 1.86
cot 0.398 \(\pm\) 0.026 0.380 \(\pm\) 0.028 0.258 \(\pm\) 0.020 0.869 \(\pm\) 0.020 1.097 \(\pm\) 0.023 0.402 \(\pm\) 0.028 45.29 \(\pm\) 2.30
Mixtral-8x22B zero 0.237 \(\pm\) 0.035 0.227 \(\pm\) 0.023 0.152 \(\pm\) 0.016 0.978 \(\pm\) 0.022 1.235 \(\pm\) 0.029 0.311 \(\pm\) 0.055 37.95 \(\pm\) 4.42
few 0.290 \(\pm\) 0.091 0.273 \(\pm\) 0.083 0.185 \(\pm\) 0.058 0.938 \(\pm\) 0.068 1.190 \(\pm\) 0.076 0.412 \(\pm\) 0.016 45.95 \(\pm\) 1.39
cot 0.218 \(\pm\) 0.029 0.217 \(\pm\) 0.011 0.145 \(\pm\) 0.008 1.000 \(\pm\) 0.018 1.250 \(\pm\) 0.024 0.371 \(\pm\) 0.032 42.66 \(\pm\) 2.28
Llama-70B zero 0.442 \(\pm\) 0.005 0.441 \(\pm\) 0.012 0.301 \(\pm\) 0.010 0.836 \(\pm\) 0.002 1.056 \(\pm\) 0.004 0.487 \(\pm\) 0.008 52.33 \(\pm\) 0.77
few 0.473 \(\pm\) 0.004 0.477 \(\pm\) 0.012 0.327 \(\pm\) 0.008 0.811 \(\pm\) 0.006 1.027 \(\pm\) 0.004 0.493 \(\pm\) 0.001 52.93 \(\pm\) 0.14
cot 0.465 \(\pm\) 0.019 0.465 \(\pm\) 0.016 0.320 \(\pm\) 0.012 0.812 \(\pm\) 0.017 1.034 \(\pm\) 0.019 0.487 \(\pm\) 0.011 52.43 \(\pm\) 0.98
Qwen2.5-72B zero 0.463 \(\pm\) 0.003 0.466 \(\pm\) 0.006 0.319 \(\pm\) 0.005 0.817 \(\pm\) 0.009 1.036 \(\pm\) 0.003 0.467 \(\pm\) 0.006 50.82 \(\pm\) 0.40
few 0.453 \(\pm\) 0.024 0.459 \(\pm\) 0.029 0.314 \(\pm\) 0.021 0.824 \(\pm\) 0.026 1.046 \(\pm\) 0.023 0.445 \(\pm\) 0.016 49.04 \(\pm\) 1.30
cot 0.435 \(\pm\) 0.017 0.443 \(\pm\) 0.019 0.302 \(\pm\) 0.013 0.846 \(\pm\) 0.022 1.063 \(\pm\) 0.016 0.451 \(\pm\) 0.023 49.55 \(\pm\) 1.83
Command-R-104B zero 0.365 \(\pm\) 0.041 0.362 \(\pm\) 0.044 0.246 \(\pm\) 0.031 0.876 \(\pm\) 0.029 1.127 \(\pm\) 0.037 0.423 \(\pm\) 0.011 47.07 \(\pm\) 0.95
few 0.392 \(\pm\) 0.012 0.381 \(\pm\) 0.014 0.260 \(\pm\) 0.012 0.864 \(\pm\) 0.015 1.103 \(\pm\) 0.011 0.406 \(\pm\) 0.040 45.64 \(\pm\) 3.21
cot 0.354 \(\pm\) 0.027 0.357 \(\pm\) 0.025 0.242 \(\pm\) 0.019 0.885 \(\pm\) 0.020 1.136 \(\pm\) 0.023 0.428 \(\pm\) 0.032 47.42 \(\pm\) 2.58

5.1 Evaluation metrics↩︎

To assess the reliability and consistency of LLM-based argument quality evaluation, we did three complementary analyses. First, in the LLM vs. Human Expert analysis, we compared LLM-generated pairwise preferences and the resulting Bradley-Terry scores against those derived from the Webis-ArgQuality-20 expert annotations across the logic, rhetoric, and dialectic dimensions. Second, in the Best LLM vs. Other LLMs analysis, we selected the highest-performing model and compared its pairwise annotations and resulting BT scores against those produced by other LLMs across the same argument pairs. Third, in the Prediction Variability analysis, we assessed the stability of each LLM by repeating the evaluation process across three independent runs and measuring the agreement between the resulting pairwise annotations.

We evaluated Bradley-Terry score alignment using Pearson (\(r\)), Spearman (\(\rho\)), Mean Absolute Error (MAE), and Root Mean Square Error (RMSE). Annotation agreement was measured using Cohen’s \(\kappa\), Krippendorff’s \(\alpha\), and percent agreement.

6 Results & Discussion↩︎

Figure 1: Distribution of Bradley-Terry scores assigned by human experts and Llama-70B (few-shot).
Table 2: Results per dimension of the best performing configuration LLama-70B with few-shot.
Dim Pearson (\(r\)) Spearman (\(\rho\)) Kendall MAE RMSE \(\kappa\) IAA % Agreement
Logic 0.474 0.479 0.329 0.806 1.026 53.003 0.493
Rhetoric 0.476 0.488 0.333 0.808 1.024 52.759 0.493
Dialectic 0.469 0.464 0.318 0.818 1.031 53.017 0.494

To address SRQ1, we begin by identifying the best-performing model and prompt configuration for evaluating argument quality. Table 1 compares rankings and annotations produced by experts with those generated by LLMs under zero-shot (zero), few-shot (few), and chain-of-thought (cot) prompting strategies, across 36 configurations comprising 12 models and 3 prompting strategies. Llama-70B with few-shot prompting achieves the highest average correlations across the Pearson, Spearman, and Kendall metrics over the logic, rhetoric, and dialect dimensions, with averaged scores of 0.473, 0.477, and 0.327, respectively. It is followed by Qwen2.5-72B under zero-shot prompting, which attains corresponding averaged scores of 0.463, 0.466, and 0.319. Both models also exhibit low variability across the three dimensions. Both configurations achieve the lowest error metrics, with MAE and RMSE of 0.811 and 1.027 for LLaMA-70B with few-shot, and 0.817 and 1.036 for Qwen2.5-72B with zero-shot, respectively. The highest Cohen’s \(\kappa\) is obtained also by LLama-70B with few-shot with 0.493, while the second best is the same model under both zero-shot and chain-of-thought. Similarly, these configurations achieve a percent agreement of 52.93%, 52.43%, and 52.33% for few-shot, chain-of-thought, and zero-shot, respectively. Performance by model size. Small and medium size models do not exhibit higher agreement with experts than large size ones. Across prompts, chain-of-thought may lead to lower correlation scores and agreement with expert rankings and annotations compared to zero-shot. Overall, zero-shot, few-shot, and chain-of-thought exhibit minimal variability across the evaluated dimensions.

Performance by model family. Command-R-7B and Command-R-104B achieve comparable performance, with Command-R-104B obtaining slightly higher correlation and agreement scores. In most other model families, smaller variants perform worse than their larger counterparts. The main exception is the Mistral family, where Mistral-7B achieves higher correlation with expert rankings across all prompting configurations than Mistral-22B, while also obtaining lower MAE and RMSE values. However, Mistral-22B achieves higher IAA scores.

Performance by prompt strategy. There is no systematic preference for a single prompting strategy across all models. Among small models, except for Qwen2.5-7B, few-shot prompting decreases correlation and agreement with experts relative to zero-shot prompting. A similar pattern is observed in medium-sized models, where few-shot prompting is generally detrimental, except for Mixtral-8x7B and Mixtral-8x22B. In contrast, among large models, few-shot prompting benefits Llama-70B and Command-R-104B.

Performance by quality dimension. Overall, configurations showed low variability across the logical, quality, and rhetorical dimensions, indicating that no specific dimension was harder to evaluate. Only Mixtral-8x7B and Command-R-7B under the few-shot setting presented higher variability compared to other configurations across Pearson, Spearman, Kendall, MAE, and RMSE. However, this variability was not reflected in Cohen’s \(\kappa\) or percent agreement. Table 2 shows the highest performance achieved by the best configuration, Llama-70B with few-shot, highlighting that the three dimensions had similar difficulty levels 4. Moreover, Figure 1 shows that, despite its performance, Llama-70B with few-shot produces a Bradley-Terry score distribution that differs from that of human experts, consistent with the moderate correlation observed. In particular, the LLM’s distribution appears slightly more right-skewed.

Table 3: LLM and prompt configurations scores and annotations compared against Llama-70B few-shot. The configuration most aligned with Llama-70B few-shot per column is in bold; the second-most aligned is underlined.
Model Prompt Pearson (\(r\)) Spearman (\(\rho\)) Kendall MAE RMSE \(\kappa\) IAA % Agreement
Mistral-7B zero 0.521 \(\pm\) 0.032 0.531 \(\pm\) 0.027 0.370 \(\pm\) 0.020 0.787 \(\pm\) 0.022 0.978 \(\pm\) 0.033 0.234 \(\pm\) 0.089 26.32 \(\pm\) 8.30
few 0.057 \(\pm\) 0.242 0.066 \(\pm\) 0.249 0.044 \(\pm\) 0.168 1.085 \(\pm\) 0.139 1.366 \(\pm\) 0.181 0.354 \(\pm\) 0.150 39.47 \(\pm\) 15.40
cot 0.476 \(\pm\) 0.063 0.492 \(\pm\) 0.058 0.340 \(\pm\) 0.042 0.823 \(\pm\) 0.034 1.023 \(\pm\) 0.061 0.134 \(\pm\) 0.067 15.95 \(\pm\) 6.04
Llama-8B zero 0.497 \(\pm\) 0.014 0.497 \(\pm\) 0.021 0.344 \(\pm\) 0.014 0.797 \(\pm\) 0.011 1.003 \(\pm\) 0.014 0.498 \(\pm\) 0.035 53.22 \(\pm\) 3.34
few 0.228 \(\pm\) 0.089 0.235 \(\pm\) 0.072 0.158 \(\pm\) 0.050 0.991 \(\pm\) 0.058 1.241 \(\pm\) 0.071 0.566 \(\pm\) 0.028 60.09 \(\pm\) 2.54
cot 0.194 \(\pm\) 0.095 0.196 \(\pm\) 0.094 0.132 \(\pm\) 0.064 1.020 \(\pm\) 0.066 1.268 \(\pm\) 0.073 0.388 \(\pm\) 0.014 42.54 \(\pm\) 1.37
Olmo2-7B zero -0.033 \(\pm\) 0.088 -0.035 \(\pm\) 0.079 -0.022 \(\pm\) 0.053 1.140 \(\pm\) 0.032 1.436 \(\pm\) 0.062 0.328 \(\pm\) 0.078 37.42 \(\pm\) 7.29
few -0.064 \(\pm\) 0.116 -0.074 \(\pm\) 0.110 -0.050 \(\pm\) 0.074 1.162 \(\pm\) 0.057 1.457 \(\pm\) 0.080 0.415 \(\pm\) 0.077 46.14 \(\pm\) 7.12
cot 0.008 \(\pm\) 0.070 0.005 \(\pm\) 0.078 0.004 \(\pm\) 0.052 1.121 \(\pm\) 0.033 1.408 \(\pm\) 0.049 0.371 \(\pm\) 0.089 41.62 \(\pm\) 8.51
Qwen2.5-7B zero 0.640 \(\pm\) 0.051 0.640 \(\pm\) 0.052 0.459 \(\pm\) 0.043 0.658 \(\pm\) 0.050 0.847 \(\pm\) 0.059 0.640 \(\pm\) 0.023 66.57 \(\pm\) 2.18
few 0.615 \(\pm\) 0.057 0.626 \(\pm\) 0.056 0.450 \(\pm\) 0.046 0.667 \(\pm\) 0.055 0.876 \(\pm\) 0.066 0.693 \(\pm\) 0.019 71.64 \(\pm\) 1.69
cot 0.496 \(\pm\) 0.164 0.494 \(\pm\) 0.176 0.348 \(\pm\) 0.132 0.777 \(\pm\) 0.133 0.995 \(\pm\) 0.164 0.542 \(\pm\) 0.103 57.36 \(\pm\) 9.65
Command-R-7B zero 0.453 \(\pm\) 0.098 0.451 \(\pm\) 0.102 0.311 \(\pm\) 0.076 0.830 \(\pm\) 0.085 1.044 \(\pm\) 0.093 0.505 \(\pm\) 0.055 54.17 \(\pm\) 5.10
few 0.382 \(\pm\) 0.203 0.384 \(\pm\) 0.203 0.263 \(\pm\) 0.141 0.875 \(\pm\) 0.137 1.102 \(\pm\) 0.176 0.452 \(\pm\) 0.075 49.07 \(\pm\) 6.91
cot 0.441 \(\pm\) 0.041 0.438 \(\pm\) 0.043 0.299 \(\pm\) 0.031 0.845 \(\pm\) 0.028 1.057 \(\pm\) 0.038 0.419 \(\pm\) 0.035 45.64 \(\pm\) 3.17
Mixtral-8x7B zero 0.343 \(\pm\) 0.067 0.338 \(\pm\) 0.058 0.231 \(\pm\) 0.042 0.904 \(\pm\) 0.043 1.145 \(\pm\) 0.059 0.396 \(\pm\) 0.068 43.35 \(\pm\) 6.69
few 0.313 \(\pm\) 0.243 0.327 \(\pm\) 0.224 0.224 \(\pm\) 0.155 0.920 \(\pm\) 0.164 1.161 \(\pm\) 0.200 0.491 \(\pm\) 0.111 52.61 \(\pm\) 11.22
cot 0.181 \(\pm\) 0.138 0.164 \(\pm\) 0.128 0.111 \(\pm\) 0.086 1.010 \(\pm\) 0.080 1.277 \(\pm\) 0.107 0.291 \(\pm\) 0.055 32.93 \(\pm\) 6.10
Mistral-22B zero -0.050 \(\pm\) 0.106 -0.053 \(\pm\) 0.100 -0.035 \(\pm\) 0.067 1.146 \(\pm\) 0.046 1.448 \(\pm\) 0.074 0.385 \(\pm\) 0.080 43.15 \(\pm\) 7.41
few 0.062 \(\pm\) 0.025 0.055 \(\pm\) 0.021 0.037 \(\pm\) 0.014 1.092 \(\pm\) 0.011 1.370 \(\pm\) 0.018 0.435 \(\pm\) 0.044 47.78 \(\pm\) 4.20
cot -0.050 \(\pm\) 0.135 -0.055 \(\pm\) 0.137 -0.037 \(\pm\) 0.093 1.149 \(\pm\) 0.071 1.447 \(\pm\) 0.095 0.369 \(\pm\) 0.059 41.53 \(\pm\) 5.33
Olmo2-32B zero 0.666 \(\pm\) 0.024 0.659 \(\pm\) 0.025 0.472 \(\pm\) 0.021 0.646 \(\pm\) 0.027 0.817 \(\pm\) 0.030 0.500 \(\pm\) 0.048 53.17 \(\pm\) 4.77
few 0.605 \(\pm\) 0.069 0.594 \(\pm\) 0.079 0.420 \(\pm\) 0.062 0.700 \(\pm\) 0.067 0.886 \(\pm\) 0.076 0.529 \(\pm\) 0.042 56.32 \(\pm\) 4.03
cot 0.685 \(\pm\) 0.019 0.673 \(\pm\) 0.023 0.486 \(\pm\) 0.019 0.623 \(\pm\) 0.019 0.793 \(\pm\) 0.024 0.553 \(\pm\) 0.033 58.40 \(\pm\) 3.19
Mixtral-8x22B zero 0.552 \(\pm\) 0.040 0.545 \(\pm\) 0.044 0.380 \(\pm\) 0.033 0.747 \(\pm\) 0.035 0.946 \(\pm\) 0.042 0.429 \(\pm\) 0.094 46.22 \(\pm\) 8.98
few 0.509 \(\pm\) 0.112 0.497 \(\pm\) 0.109 0.348 \(\pm\) 0.085 0.775 \(\pm\) 0.097 0.986 \(\pm\) 0.117 0.544 \(\pm\) 0.055 57.66 \(\pm\) 5.11
cot 0.502 \(\pm\) 0.019 0.513 \(\pm\) 0.026 0.356 \(\pm\) 0.019 0.774 \(\pm\) 0.018 0.997 \(\pm\) 0.019 0.499 \(\pm\) 0.021 53.20 \(\pm\) 2.30
Llama-70B zero 0.892 \(\pm\) 0.003 0.892 \(\pm\) 0.004 0.718 \(\pm\) 0.005 0.341 \(\pm\) 0.003 0.464 \(\pm\) 0.007 0.831 \(\pm\) 0.011 84.45 \(\pm\) 1.05
few 1.000 \(\pm\) 0.000 1.000 \(\pm\) 0.000 1.000 \(\pm\) 0.000 0.000 \(\pm\) 0.000 0.000 \(\pm\) 0.000 1.000 \(\pm\) 0.000 100.00 \(\pm\) 0.00
cot 0.857 \(\pm\) 0.026 0.861 \(\pm\) 0.026 0.677 \(\pm\) 0.032 0.396 \(\pm\) 0.035 0.533 \(\pm\) 0.049 0.795 \(\pm\) 0.030 81.06 \(\pm\) 2.83
Qwen2.5-72B zero 0.829 \(\pm\) 0.022 0.824 \(\pm\) 0.021 0.632 \(\pm\) 0.023 0.445 \(\pm\) 0.027 0.584 \(\pm\) 0.037 0.741 \(\pm\) 0.023 76.04 \(\pm\) 2.17
few 0.819 \(\pm\) 0.023 0.818 \(\pm\) 0.021 0.625 \(\pm\) 0.023 0.456 \(\pm\) 0.028 0.600 \(\pm\) 0.037 0.708 \(\pm\) 0.030 72.83 \(\pm\) 2.84
cot 0.796 \(\pm\) 0.005 0.793 \(\pm\) 0.002 0.600 \(\pm\) 0.004 0.485 \(\pm\) 0.010 0.638 \(\pm\) 0.007 0.691 \(\pm\) 0.025 71.29 \(\pm\) 2.36
Command-R-104B zero 0.577 \(\pm\) 0.077 0.592 \(\pm\) 0.073 0.423 \(\pm\) 0.060 0.705 \(\pm\) 0.067 0.917 \(\pm\) 0.086 0.608 \(\pm\) 0.043 63.65 \(\pm\) 4.06
few 0.624 \(\pm\) 0.034 0.629 \(\pm\) 0.038 0.452 \(\pm\) 0.033 0.672 \(\pm\) 0.036 0.866 \(\pm\) 0.040 0.593 \(\pm\) 0.058 62.22 \(\pm\) 5.59
cot 0.563 \(\pm\) 0.044 0.577 \(\pm\) 0.046 0.412 \(\pm\) 0.037 0.712 \(\pm\) 0.042 0.934 \(\pm\) 0.047 0.621 \(\pm\) 0.057 64.90 \(\pm\) 5.41
Table 4: Variability across three runs per LLM and prompting configuration in the pairwise comparison annotation task. Reported are the proportions of instances with identical labels across all three runs (all equal), agreement between two of three runs (2 equal), and different labels across all runs (unequal), along with Krippendorff’s \(\alpha\). Results are averaged across dimensions (\(\pm\) standard deviation).
Model Prompt All equal 2 equal All unequal kripp. \(\alpha\)
# % # % # %
Mistral-7B zero 13952.00 \(\pm\) 0.00 100.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 1.00 \(\pm\) 0.00
few 13952.00 \(\pm\) 0.00 100.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 1.00 \(\pm\) 0.00
cot 13952.00 \(\pm\) 0.00 100.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 1.00 \(\pm\) 0.00
Llama-8B zero 13952.00 \(\pm\) 0.00 100.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 1.00 \(\pm\) 0.00
few 13952.00 \(\pm\) 0.00 100.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 1.00 \(\pm\) 0.00
cot 13952.00 \(\pm\) 0.00 100.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 1.00 \(\pm\) 0.00
Olmo2-7B zero 13952.00 \(\pm\) 0.00 100.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 1.00 \(\pm\) 0.00
few 13952.00 \(\pm\) 0.00 100.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 1.00 \(\pm\) 0.00
cot 13952.00 \(\pm\) 0.00 100.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 1.00 \(\pm\) 0.00
Qwen2.5-7B zero 13565.67 \(\pm\) 669.15 97.23 \(\pm\) 4.80 386.33 \(\pm\) 669.15 2.77 \(\pm\) 4.80 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.97 \(\pm\) 0.05
few 13952.00 \(\pm\) 0.00 100.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 1.00 \(\pm\) 0.00
cot 13952.00 \(\pm\) 0.00 100.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 1.00 \(\pm\) 0.00
Command-R-7B zero 13952.00 \(\pm\) 0.00 100.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 1.00 \(\pm\) 0.00
few 13952.00 \(\pm\) 0.00 100.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 1.00 \(\pm\) 0.00
cot 13952.00 \(\pm\) 0.00 100.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 1.00 \(\pm\) 0.00
Mixtral-8x7B zero 13105.00 \(\pm\) 188.65 93.93 \(\pm\) 1.35 847.00 \(\pm\) 188.65 6.07 \(\pm\) 1.35 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.92 \(\pm\) 0.01
few 12025.33 \(\pm\) 1331.71 86.19 \(\pm\) 9.54 1898.00 \(\pm\) 1298.63 13.60 \(\pm\) 9.31 28.67 \(\pm\) 48.79 0.21 \(\pm\) 0.35 0.78 \(\pm\) 0.02
cot 12567.00 \(\pm\) 543.52 90.07 \(\pm\) 3.90 1379.33 \(\pm\) 533.88 9.89 \(\pm\) 3.83 5.67 \(\pm\) 9.81 0.04 \(\pm\) 0.07 0.87 \(\pm\) 0.06
Mistral-22B zero 6787.00 \(\pm\) 1466.48 48.65 \(\pm\) 10.51 6739.67 \(\pm\) 1419.55 48.31 \(\pm\) 10.17 425.33 \(\pm\) 61.09 3.05 \(\pm\) 0.44 0.16 \(\pm\) 0.04
few 4899.67 \(\pm\) 1359.89 35.12 \(\pm\) 9.75 7971.67 \(\pm\) 778.22 57.14 \(\pm\) 5.58 1080.67 \(\pm\) 584.11 7.75 \(\pm\) 4.19 0.16 \(\pm\) 0.07
cot 5320.00 \(\pm\) 999.99 38.13 \(\pm\) 7.17 7830.00 \(\pm\) 753.81 56.12 \(\pm\) 5.40 802.00 \(\pm\) 374.15 5.75 \(\pm\) 2.68 0.11 \(\pm\) 0.00
Olmo2-32B zero 13952.00 \(\pm\) 0.00 100.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 1.00 \(\pm\) 0.00
few 11310.00 \(\pm\) 4576.08 81.06 \(\pm\) 32.80 2642.00 \(\pm\) 4576.08 18.94 \(\pm\) 32.80 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.81 \(\pm\) 0.33
cot 13952.00 \(\pm\) 0.00 100.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 1.00 \(\pm\) 0.00
Mixtral-8x22B zero 9584.00 \(\pm\) 585.15 68.69 \(\pm\) 4.19 4229.00 \(\pm\) 527.10 30.31 \(\pm\) 3.78 139.00 \(\pm\) 59.77 1.00 \(\pm\) 0.43 0.63 \(\pm\) 0.01
few 6598.67 \(\pm\) 847.45 47.30 \(\pm\) 6.07 6379.33 \(\pm\) 667.24 45.72 \(\pm\) 4.78 974.00 \(\pm\) 194.13 6.98 \(\pm\) 1.39 0.39 \(\pm\) 0.09
cot 7869.00 \(\pm\) 645.82 56.40 \(\pm\) 4.63 5667.67 \(\pm\) 632.36 40.62 \(\pm\) 4.53 415.33 \(\pm\) 80.08 2.98 \(\pm\) 0.57 0.50 \(\pm\) 0.06
Llama-70B zero 13268.00 \(\pm\) 64.63 95.10 \(\pm\) 0.46 684.00 \(\pm\) 64.63 4.90 \(\pm\) 0.46 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.93 \(\pm\) 0.01
few 13952.00 \(\pm\) 0.00 100.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 1.00 \(\pm\) 0.00
cot 13210.33 \(\pm\) 645.63 94.68 \(\pm\) 4.63 740.00 \(\pm\) 643.95 5.30 \(\pm\) 4.62 1.67 \(\pm\) 2.89 0.01 \(\pm\) 0.02 0.93 \(\pm\) 0.06
Qwen2.5-72B zero 12743.33 \(\pm\) 1053.37 91.34 \(\pm\) 7.55 1208.67 \(\pm\) 1053.37 8.66 \(\pm\) 7.55 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.90 \(\pm\) 0.09
few 13347.67 \(\pm\) 1046.74 95.67 \(\pm\) 7.50 582.00 \(\pm\) 1008.05 4.17 \(\pm\) 7.23 22.33 \(\pm\) 38.68 0.16 \(\pm\) 0.28 0.95 \(\pm\) 0.09
cot 13433.00 \(\pm\) 898.93 96.28 \(\pm\) 6.44 519.00 \(\pm\) 898.93 3.72 \(\pm\) 6.44 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.96 \(\pm\) 0.07
Commandr-104B zero 10567.67 \(\pm\) 3030.76 75.74 \(\pm\) 21.72 3256.33 \(\pm\) 2878.99 23.34 \(\pm\) 20.63 128.00 \(\pm\) 221.70 0.92 \(\pm\) 1.59 0.67 \(\pm\) 0.30
few 12596.67 \(\pm\) 2347.51 90.29 \(\pm\) 16.83 1355.33 \(\pm\) 2347.51 9.71 \(\pm\) 16.83 0.00 \(\pm\) 0.00 0.00 \(\pm\) 0.00 0.86 \(\pm\) 0.24
cot 12541.00 \(\pm\) 2443.92 89.89 \(\pm\) 17.52 1315.33 \(\pm\) 2278.22 9.43 \(\pm\) 16.33 95.67 \(\pm\) 165.70 0.69 \(\pm\) 1.19 0.82 \(\pm\) 0.31

6.1 Cross-LLM Comparison↩︎

In order to address SRQ2, Table 3 compares the rankings and annotations produced by Llama-70B with few-shot against those generated by the remaining models. While configurations other than Llama-70B with few-shot show lower results with respect to the ground truth, we also evaluate how closely other LLMs agree with this best configuration.

Among all configurations, Llama-70B consistently shows the highest correlations and agreement scores across zero-shot and chain-of-thought. For zero-shot it achieves 0.892, 0.892, and 0.718 for Pearson, Spearman, and Kendall, respectively, while 0.831 and 84.45% for Cohen’s \(\kappa\) and percent agreement, respectively. Qwen2.5-72B follows closely under all prompting settings. Although Command-R-104B still shows substantial agreement, it consistently remains below both Llama-70B and Qwen2.5-72B, the other large-scale models.

Within the medium-sized models, Olmo2-32B is the closest to the best configuration. It surpasses Command-R-104B under zero-shot and chain-of-thought, while falling slightly behind under few-shot. The remaining medium-sized models show only moderate agreement. An exception is Mistral-22B, which obtains correlation scores close to 0 together with higher MAE and RMSE values.

The small models generally show moderate agreement and correlation scores. Qwen2.5-7B is the closest among the small models, reflecting the strong results of its larger 72B counterpart across all prompting settings. In contrast, Llama-8B achieves only moderate IAA and moderate-to-low correlation scores, together with higher MAE and RMSE values compared to the models with the strongest agreement. Similarly, Olmo2-7B does not align as well with the best configuration as its 32B counterpart, producing correlations close to 0. Command-R-7B, however, remains partially aligned as its larger version. The low variability across dimensions indicates that these findings are consistent for each of them5.

These results, together with those in Table 1, show that although Llama-70B is the best configuration and reaches moderate agreement, some groups of LLMs closely align with it and share its vision, while others are less aligned with it despite still agreeing with experts, reflecting differing but potentially accurate interpretations of the dimensions.

6.2 Prediction Variability↩︎

In order to address SRQ3, Table 4 shows how LLMs exhibit low prediction variability in the pairwise comparison annotation task. The worst-case scenario is Mistral-22B with few-shot prompting, where 7.75% of cases resulted in all three possible labels (“A”, “B”, and “Tie”) across runs. Mistral-22B also achieved the lowest Krippendorff’s \(\alpha\) scores overall (0.16, 0.16, and 0.11 for zero-shot, few-shot, and chain-of-thought, respectively). This is followed by Mixtral-8x22B, which obtained Krippendorff’s \(\alpha\) scores of 0.63, 0.39, and 0.50 under zero-shot, few-shot, and chain-of-thought, respectively. Among the less stable models, Command-R-104B achieved \(\alpha\) values of 0.67 and 0.82 with zero-shot and chain-of-thought, respectively, which improved to 0.86 with few-shot. All remaining models and prompting strategies exhibited strong agreement, achieving Krippendorff’s \(\alpha\) values above 0.78.

Although small models do not achieve the highest performance relative to human experts, they are generally the most stable in the pairwise comparison annotation task. They consistently attain perfect or almost perfect, Krippendorff’s \(\alpha\) scores, while producing few or no "2 equal" and "All unequal" cases. Large models show slightly lower stability. Still, benefiting from few-shot prompting, resulting in fewer "All unequal", "2 equal" cases, or better inter-annotator agreement. In contrast, few-shot prompting appears detrimental for medium-sized models, which consistently achieve lower Krippendorff’s \(\alpha\) scores than their zero-shot and chain-of-thought counterparts.

7 Conclusion & Future Work↩︎

This paper investigated the potential of 12 open-weight LLMs to evaluate argument quality across the logical, rhetorical, and dialectical dimensions using zero-shot, few-shot, and chain-of-thought. Through pairwise comparisons and Bradley–Terry modeling, we analyzed both the alignment of LLM-generated rankings with expert judgments and their consistency across runs.

We show that, although LLMs do not yet reach expert-level performance, they can approximate expert rankings to a meaningful degree. Among all evaluated models, Llama-70B with few-shot prompting achieved the strongest results, obtaining the highest (but moderate) agreement with expert annotations, with Pearson, Spearman, and Kendall correlations of 0.473, 0.477, and 0.327, respectively, as well as a Cohen’s \(\kappa\) of 0.493 and 52.93 percent agreement, across the three quality dimensions. Some models align more closely with Llama-70B, such as Qwen-2.5-72B, or smaller models like Qwen-2.5-7B and Olmo2-32B, while others are less consistent with it but still agree with experts. This suggests that different models may capture complementary perspectives, and that combining diverse LLMs may outperform relying on Llama-70B alone. Finally, we show that, across only three runs per model, prediction variability remains low. Disagreements ranged from cases where two out of three labels matched to instances where all labels differed (up to 7.75% of the total comparisons for the worst configuration Mistral-22B). While still low, this variability motivates the use of aggregation strategies such as majority voting. Few-shot prompting was also found to enhance stability, although its benefits were primarily observed in larger models.

Future work will explore fine-tuning [33] and ensembling LLMs for argument quality assessment, including dimension-specific models. Domain-specific training and ensembling may improve their ability to evaluate reasoning validity and detect fallacies. Second, we will broaden the scope of argument quality assessment by incorporating additional dimensions and working toward a comprehensive overall quality measure.

8 Limitations↩︎

In this section, the limitations of the study are discussed as well as the potential threats to the validity of the findings. The discussion is structured according to the common validity categories inspired by [34] guidelines, namely, internal validity, external validity, construct validity and conclusion validity.

8.1 Internal Validity↩︎

One limitation of this study is the inherent variability of LLM-based evaluations, as different runs may produce different pairwise judgments. While the results remained stable across runs and majority voting was used to improve reliability, stability itself remains an important factor to assess. In particular, we did not evaluate the models at lower temperature settings. Based on the hypothesis proposed by [31], which identifies a plateau beyond which model outputs may become unreliable, stability at a temperature of 1 may indicate comparable or greater stability at lower temperatures. Nevertheless, an ablation study across different temperature settings would be necessary to verify this assumption and confirm that all models produce comparable results for our task in line with the findings of [31].

Another limitation concerns prompt formulation. Although the same prompt templates were used for all models, differences in how individual LLMs interpret the instructions may have influenced the resulting judgments.

8.2 External Validity↩︎

First, the evaluation was based on a specific dataset consisting of arguments drawn from an online debate portal on a set of different topics. These arguments are mostly a few sentences. Therefore, the results achieved may not generalize to other more complex forms, such as essays. There is a possibility that it could be (more or less) challenging for the LLM. Another aspect is that the expert scores used as ground truth came from a specific annotation process and reflect the judgments of the annotators shaped by their own interpretation of the dimensions. In another context, the different dimensions could be understood differently, meaning the LLM’s alignment with one set of experts might not hold if used in another set. For this research, the zero-shot, few-shot, and chain-of-thought approaches were used where the model is given instructions to compare the arguments without fine-tuning or additional training. While these approaches are practical, it does not take into account the performance gains from fine-tuning the LLM. The results do not explain how well the models would do in that particular setting. Finally, LLMs are evolving rapidly. The LLM versions used in this study are not the latest and may have already been surpassed by newer releases. At the same time, to ensure a fair comparison, we accounted for model size (small, medium, and large) and family, while avoiding substantial version differences (e.g., comparing a version 3 model with a version 1 model from the same family). Although comparative and qualitative insights might remain relevant, metric values may shift even further with advances in LLM.

8.3 Construct Validity↩︎

Argument quality was split into three dimensions (logical, rhetorical, dialectical) according to the dataset’s scheme for annotation. There is a possibility that the LLMs comparisons do not align with the intended construct. For example the LLM might rate the argument’s logical quality on confident phasing even if the actual argument itself is logically flawed. Comparing them to human judgment without 100% certainty that they have the same understanding of the ‘quality’ dimensions is very challenging. Furthermore, while this approach provided insights that were valuable, it did not encompass every aspect related to argument quality such as precision and completeness. The dataset used for the gold standard comes from different experts who made pairwise comparisons. Any noise and/or bias could affect the results. The Webis-ArgQuality dataset is assumed as a valid measure for argument quality, but it is possible that there could have been inconsistencies in the annotation process or maybe the experts had their own biases. Another consideration is the separation of quality into three dimensions. Each dimension is treated independently for evaluation purposes, but there was no explicit reminder in the prompt to ignore the other dimensions. Therefore, there is a possibility that the LLM might try to bring in other dimensions despite the intention to isolate. If the LLM for example took rhetorical into account for logical dimension analysis, then results could be blurry.

8.4 Conclusion Validity↩︎

One limitation related to conclusion validity is seen through the number of pairwise comparisons generated for this study. Although 13952 comparisons across 1271 arguments provided a substantial dataset, prior work by [4] demonstrated the benefits of using far larger comparisons sets (over 41000). Larger datasets may increase the statistical robustness of the Bradley-Terry model, and improve the stability of resulting rankings. In this study, the comparison set was chosen to maintain consistency with the comparison corpus released as part of the Webis-ArgQuality-20, which relies on a cyclic group sampling strategy. Future research could explore the impact of scaling up the number of comparisons.

9 Ethical Considerations↩︎

The assessment of argument quality aims, in general, at the societal benefit since better, stronger, higher-quality arguments do not contain fallacies and spurious reasoning. Therefore, this work intends to promote the development of high-quality, grounded discussions. At the same time, two ethical risks are inherent to this work. The first is that, by strengthening the quality of arguments supporting them, unethical or harmful claims are spread. For instance, hateful messages could be supported by rhetorically high-quality arguments. One possible solution to this issue is to accompany argument quality assessment with hate speech detection or similar analyses involving other information quality aspects. The second risk is that, by demanding quality assessment to LLMs, intentional or unintentional distortions are introduced in the analysis and moderation of public discourse. For example, models could show biases that favor some types of arguments over others. For this reason, as indicated also above, it is important to include human oversight in these moderation systems and employ automated models in LLM-in-the-loop systems.

Acknowledgments↩︎

This work used the Dutch national e-infrastructure with the support of the SURF Coop-erative using grant no. EINF-15500. The authors would also like to thank Greta Damo for her helpful comments during the revision of this paper.

10 Specific Version of LLMs Evaluated↩︎

We use Mistral [35], Llama 3* [36], Qwen2.5 [37], Olmo2 [38], and Command-R [39] open-access Instruct-based models from Hugging Face 6. All models are publicly available and traceable through their repository identifiers:

Small Size Models:

  • Mistral-7B: mistralai/
    Mistral-7B-Instruct-v0.3

  • Llama-8B: meta-llama/
    Llama-3.1-8B-Instruct

  • Olmo2-7B: allenai/
    OLMo-2-1124-7B-Instruct

  • Qwen2.5-7B: Qwen/Qwen2.5-7B-Instruct

  • Command-r-7B: CohereLabs/``c4ai-command-r7b-12-2024

Medium Size Models:

  • Mixtral-8x7B: mistralai/
    Mixtral-8x7B-Instruct-v0.1

  • Mistral-22B: mistralai/
    Mistral-Small-Instruct-2409

  • Olmo2-32B: allenai/
    OLMo-2-0325-32B-Instruct

  • Mixtral-8x22B: mistralai/
    Mixtral-8x22B-Instruct-v0.1

Large Size Models:

  • Llama-70B: meta-llama/
    Llama-3.3-70B-Instruct

  • Qwen2.5-72B: Qwen/
    Qwen2.5-72B-Instruct

  • Command-r-104B: CohereLabs/
    c4ai-command-r-plus-08-2024

Small models were run on a single H100 GPU, medium-sized models on up to two H100 GPUs, and large models on up to four H100 GPUs.

11 Prompts↩︎

We tested three prompting strategies, zero-shot, few-shot, and chain-of-thought using a system-user prompt setup with structured outputs through the vLLM Python library 7.

11.1 Zero-shot Prompt↩︎

System Prompt: You are given two arguments: Argument A and Argument B. Decide which one is {dim_adverb} stronger: Reply with only one of the following options: A, B, or Tie.

User Prompt:
Argument A: {a}
Argument B: {b}

Output Labels: ["A", "B", "Tie"]

Where dim_adverb are replaced with the strings logically, dialectically, rhetorically, for the logic, dialectic, and rhetoric dimension, respectively. a, and b are replaced with the arguments A, and B, respectively, to be judged by the LLM.

11.2 Few-shot Prompt↩︎

System Prompt: You are given two arguments: Argument A and Argument B. Decide which one is {dim_adverb} stronger: Reply with only one of the following options: A, B, or Tie.

Examples:
Argument A: {ex_A_argA}
Argument B: {ex_A_argB}
A

Argument A: {ex_B_argA}
Argument B: {ex_B_argB}
B

Argument A: {ex_tie_argA}
Argument B: {ex_tie_argB}
tie

User Prompt:
Argument A: {a}
Argument B: {b}

Output Labels: ["A", "B", "Tie"]

Where dim_adverb, a, and b are instantiated as in the zero-shot prompt. ex_A_argA and ex_A_argB are few-shot examples where A is preferred on the evaluated dimension; ex_B_argA and ex_B_argB are examples where B is preferred; and ex_tie_argA and ex_tie_argB are examples where the preferred label is Tie.

We used 3 shots for each of the 20 topics in the Webis-ArgQuality-20 corpus, leading to 60 examples per dimension 8.

11.3 Chain-of-thought↩︎

System Prompt: You are given two arguments: Argument A and Argument B.
Decide which one is {dim_adverb} stronger considering these criteria:
{dim_criterias}
Let’s think step by step and reply with only one of the following options: A, B, or Tie.

User Prompt:
Argument A: {a}
Argument B: {b}

Output Labels: ["A", "B", "Tie"]

Where dim_adverb, a, and b are instantiated as in the zero-shot prompt. dim_criterias is replaced with the chain-of-thought questions for each quality dimension based on the theoretical work of [3]:

Criteria for logic:
- which is more acceptable? A premise of an argument is acceptable if it is rationally worthy of being believed to be true.
- which is more relevant to a conclusion? A premise of an argument is relevant if it contributes to the acceptance or rejection of the argument’s conclusion.
- which is more sufficient to justify a conclusion? An argument’s premises are sufficient if, together, they give enough support to make it rational to draw its conclusion.

Criteria for dialectic:
- which would be acceptable to the audience? Argumentation is acceptable if the target audience accepts both the consideration of the stated arguments for the issue and the way they are stated.
- which contributes more to constructive dialogue? Argumentation is relevant if it contributes to the issue’s resolution, i.e., if it states arguments or other information that help to arrive at an ultimate conclusion.
- which better anticipates or refutes counterarguments? Argumentation is sufficient if it adequately rebuts those counterarguments to it that can be anticipated.

Criteria for rhetoric:
- which appears more authorative/trust worthy? Argumentation creates credibility if it conveys arguments and similar in a way that makes the author worthy of credence.
- which makes a stronger emotional appeal? Argumentation makes a successful emotional appeal if it creates emotions in a way that makes the target audience more open to the author’s arguments.
- which has a clearer style? Argumentation has a clear style if it uses correct and widely unambiguous language as well as if it avoids unnecessary complexity and deviation from the issue.
- which has a more appropiate style? Argumentation has an appropriate style if the used language supports the creation of credibility and emotions as well as if it is proportional to the issue.
- Which is better arranged? Argumentation is arranged properly if it presents the issue, the arguments, and its conclusion in the right order.

12 Licenses and Intended Use↩︎

The dataset used in our experiments, Webis-ArgQuality-20, was created by [4] and is available under a Creative Commons Attribution 4.0 International (CC BY 4.0) license. It is publicly accessible at https://zenodo.org/records/3780049.

The models employed in our experiments, as listed in Appendix 10, were used in accordance with their respective licenses and applicable usage policies. The code used in our experiments, together with the LLM-generated pairwise judgments and the Bradley-Terry rankings derived from them, is released under a Creative Commons Attribution 4.0 International (CC BY 4.0) license. Redistribution of model-generated outputs is believed to be permitted under the applicable licenses of the models used; users remain responsible for complying with the original model licenses and usage policies.

References↩︎

[1]
L. A. Chalaguine and C. Schulz, “Assessing convincingness of arguments in online debates with limited number of features,” in Proceedings of the student research workshop at the 15th conference of the european chapter of the association for computational linguistics, 2017, pp. 75–83.
[2]
H. Wachsmuth, K. Al Khatib, and B. Stein, “Using argument mining to assess the argumentation quality of essays,” in Proceedings of COLING 2016, the 26th international conference on computational linguistics: Technical papers, 2016, pp. 1680–1691.
[3]
H. Wachsmuth et al., “Computational argumentation quality assessment in natural language,” in Proceedings of the 15th conference of the European chapter of the association for computational linguistics: Volume 1, long papers, Apr. 2017, pp. 176–187, [Online]. Available: https://aclanthology.org/E17-1017/.
[4]
L. Gienapp, B. Stein, M. Hagen, and M. Potthast, “Efficient pairwise annotation of argument quality,” in Proceedings of the 58th annual meeting of the association for computational linguistics, Jul. 2020, pp. 5772–5781, doi: 10.18653/v1/2020.acl-main.511.
[5]
H. Wachsmuth et al., “Argument quality assessment in the age of instruction-following large language models,” in Proceedings of the 2024 joint international conference on computational linguistics, language resources and evaluation (LREC-COLING 2024), May 2024, pp. 1519–1538, [Online]. Available: https://aclanthology.org/2024.lrec-main.135/.
[6]
N. Mirzakhmedova, M. Gohsen, C. H. Chang, and B. Stein, “Are large language models reliable argument quality annotators?” in Conference on advances in robust argumentation machines, 2024, pp. 129–146.
[7]
J. Gu et al., “A survey on LLM-as-a-judge,” The Innovation, p. 101253, 2026, doi: https://doi.org/10.1016/j.xinn.2025.101253.
[8]
Y. Wang, X. Chen, B. He, and L. Sun, “Contextual interaction for argument post quality assessment,” in Proceedings of the 2023 conference on empirical methods in natural language processing, Dec. 2023, pp. 10420–10432, doi: 10.18653/v1/2023.emnlp-main.645.
[9]
E. M. Vecchi, N. Falk, I. Jundi, and G. Lapesa, “Towards argument mining for social good: A survey,” in Proceedings of the 59th annual meeting of the association for computational linguistics and the 11th international joint conference on natural language processing (volume 1: Long papers), Aug. 2021, pp. 1338–1352, doi: 10.18653/v1/2021.acl-long.107.
[10]
D. Friess and C. Eilders, “A systematic review of online deliberation research,” Policy & Internet, vol. 7, no. 3, pp. 319–339, 2015, doi: https://doi.org/10.1002/poi3.95.
[11]
I. Habernal and I. Gurevych, “Which argument is more convincing? Analyzing and predicting convincingness of web arguments using bidirectional LSTM,” in Proceedings of the 54th annual meeting of the association for computational linguistics (volume 1: Long papers), Aug. 2016, pp. 1589–1599, doi: 10.18653/v1/P16-1150.
[12]
A. Toledo et al., “Automatic argument quality assessment - new datasets and methods,” in Proceedings of the 2019 conference on empirical methods in natural language processing and the 9th international joint conference on natural language processing (EMNLP-IJCNLP), Nov. 2019, pp. 5625–5635, doi: 10.18653/v1/D19-1564.
[13]
O. Joshi, P. Pitre, and Y. Haribhakta, ArgAnalysis35K : A large-scale dataset for argument quality analysis,” in Proceedings of the 61st annual meeting of the association for computational linguistics (volume 1: Long papers), Jul. 2023, pp. 13916–13931, doi: 10.18653/v1/2023.acl-long.778.
[14]
J. Romberg, M. Maurer, H. Wachsmuth, and G. Lapesa, “Towards a perspectivist turn in argument quality assessment,” in Proceedings of the 2025 conference of the nations of the americas chapter of the association for computational linguistics: Human language technologies (volume 1: Long papers), Apr. 2025, pp. 7458–7485, doi: 10.18653/v1/2025.naacl-long.382.
[15]
R. Swanson, B. Ecker, and M. Walker, “Argument mining: Extracting arguments from online dialogue,” in Proceedings of the 16th annual meeting of the special interest group on discourse and dialogue, Sep. 2015, pp. 217–226, doi: 10.18653/v1/W15-4631.
[16]
M. Potthast et al., “Argument search: Assessing argument relevance,” in Proceedings of the 42nd international ACM SIGIR conference on research and development in information retrieval, 2019, pp. 1117–1120, doi: 10.1145/3331184.3331327.
[17]
A. Lauscher, L. Ng, C. Napoles, and J. Tetreault, “Rhetoric, logic, and dialectic: Advancing theory-based argument quality assessment in natural language processing,” in Proceedings of the 28th international conference on computational linguistics, Dec. 2020, pp. 4563–4574, doi: 10.18653/v1/2020.coling-main.402.
[18]
S. Gretz et al., “A large-scale dataset for argument quality ranking: Construction and analysis,” Proceedings of the AAAI Conference on Artificial Intelligence, vol. 34, no. 5, pp. 7805–7813, 2020, doi: 10.1609/aaai.v34i05.6285.
[19]
P. Ye and D. Doermann, “Combining preference and absolute judgements in a crowd-sourced setting,” in ICML workshop, 2013.
[20]
L. Page, S. Brin, R. Motwani, and T. Winograd, “The PageRank citation ranking : Bringing order to the web,” in The web conference, 1999, [Online]. Available: https://api.semanticscholar.org/CorpusID:1508503.
[21]
E. Simpson and I. Gurevych, “Finding convincing arguments using scalable bayesian preference learning,” Transactions of the Association for Computational Linguistics, vol. 6, pp. 357–371, Jun. 2018, doi: 10.1162/tacl_a_00026.
[22]
{David. R. }. Hunter, “MM algorithms for generalized bradley-terry models,” Annals of Statistics, vol. 32, no. 1, pp. 384–406, Feb. 2004, doi: 10.1214/aos/1079120141.
[23]
X. Chen, P. N. Bennett, K. Collins-Thompson, and E. Horvitz, “Pairwise ranking aggregation in a crowdsourced setting,” in Proceedings of the sixth ACM international conference on web search and data mining, 2013, pp. 193–202, doi: 10.1145/2433396.2433420.
[24]
D. Deshpande, Z. Sourati, F. Ilievski, and F. Morstatter, “Contextualizing argument quality assessment with relevant knowledge,” in Proceedings of the 2024 conference of the north american chapter of the association for computational linguistics: Human language technologies (volume 2: Short papers), Jun. 2024, pp. 316–326, doi: 10.18653/v1/2024.naacl-short.28.
[25]
P. Rescala, M. H. Ribeiro, T. Hu, and R. West, “Can language models recognize convincing arguments?” in Findings of the association for computational linguistics: EMNLP 2024, Nov. 2024, pp. 8826–8837, doi: 10.18653/v1/2024.findings-emnlp.515.
[26]
M. Elaraby, D. Litman, X. L. Li, and A. Magooda, “Persuasiveness of generated free-text rationales in subjective decisions: A case study on pairwise argument ranking,” in Findings of the association for computational linguistics: EMNLP 2024, Nov. 2024, pp. 14311–14329, doi: 10.18653/v1/2024.findings-emnlp.836.
[27]
B. Jin et al., “A multi-persona framework for argument quality assessment,” in Proceedings of the 63rd annual meeting of the association for computational linguistics (volume 1: Long papers), Jul. 2025, pp. 12148–12170, doi: 10.18653/v1/2025.acl-long.593.
[28]
I. De la Iglesia, I. Goenaga, J. Ramirez-Romero, J. M. Villa-Gonzalez, J. Goikoetxea, and A. Barrena, “Ranking over scoring: Towards reliable and robust automated evaluation of LLM-generated medical explanatory arguments,” in Proceedings of the 31st international conference on computational linguistics, Jan. 2025, pp. 9456–9471, [Online]. Available: https://aclanthology.org/2025.coling-main.634/.
[29]
J. A. Blair, Groundwork in the theory of argumentation: Selected papers of j. Anthony blair, vol. 21. Springer Science & Business Media, 2011.
[30]
H. Wachsmuth et al., “Argumentation quality assessment: Theory vs. practice,” in Proceedings of the 55th annual meeting of the association for computational linguistics (volume 2: Short papers), 2017, pp. 250–255.
[31]
M. Renze, “The effect of sampling temperature on problem solving in large language models,” in Findings of the association for computational linguistics: EMNLP 2024, 2024, pp. 7346–7356, doi: 10.18653/v1/2024.findings-emnlp.432.
[32]
L. Li, L. Sleem, N. Gentile, G. Nichil, and R. State, International Neural Network Society Workshop on Deep Learning Innovations and Applications 2025“Exploring the impact of temperature on large language models: Hot or cold?” Procedia Computer Science, vol. 264, pp. 242–251, 2025, doi: https://doi.org/10.1016/j.procs.2025.07.135.
[33]
M. Stahl, T. Ziegenbein, J. Park, and H. Wachsmuth, ArgInstruct: Specialized instruction fine-tuning for computational argumentation,” in Findings of the association for computational linguistics: ACL 2025, Jul. 2025, pp. 11103–11127, doi: 10.18653/v1/2025.findings-acl.579.
[34]
C. Wohlin, P. Runeson, M. Höst, M. C. Ohlsson, B. Regnell, and A. Wesslén, Experimentation in software engineering - an introduction. International Series in Software Engineering: Kluwer Academic Publishers, 2012.
[35]
A. Q. Jiang et al., “Mistral 7B.” 2023, [Online]. Available: https://arxiv.org/abs/2310.06825.
[36]
A. Dubey et al., “The llama 3 herd of models.” 2024, [Online]. Available: https://arxiv.org/abs/2407.21783.
[37]
Q. Team, “Qwen2.5: A party of foundation models.” 2024, [Online]. Available: https://qwenlm.github.io/blog/qwen2.5/.
[38]
T. OLMo et al., “2 OLMo 2 furious,” 2024, [Online]. Available: https://arxiv.org/abs/2501.00656.
[39]
T. Cohere et al., “Command a: An enterprise-ready large language model.” 2025, [Online]. Available: https://arxiv.org/abs/2504.00698.

  1. Code, and LLM generations and rankings: https://anonymous.4open.science/r/arg_quality_with_llms.↩︎

  2. The specific version of each LLM used in this study is provided in Appendix 10.↩︎

  3. Each of the prompts is provided in Appendix 11.↩︎

  4. The full table of results for each model, prompt, and dimension can be found in the repository of the paper.↩︎

  5. The full results table across models, prompts, and dimensions can be found in the repository of the paper.↩︎

  6. https://huggingface.co/models↩︎

  7. https://docs.vllm.ai/en/latest/↩︎

  8. The full list of selected examples is available at https://anonymous.4open.science/r/arg_quality_with_llms.↩︎