---
title: "Elo ranking of language models"
source: "https://systems-analysis.info/eng/Elo_ranking_of_language_models"
wiki: "systems-analysis.info/eng"
article: "Elo_ranking_of_language_models"
language: "en"
categories:
  - "Category:English"
  - "Category:Large language models"
  - "Category:LLM benchmarks"
  - "Category:Machine learning"
  - "Category:Technology"
revision_id: 133
wiki_created_at: 2026-09-06T22:17:49Z
wiki_modified_at: 2026-09-06T22:17:49Z
downloaded_at: 2026-09-07T22:21:14Z
---

# Elo ranking of language models

**Elo ranking of language models** is a family of methods for evaluating and comparing large language models (LLMs) through pairwise, human-preference comparisons, using rating systems originally developed for competitive games such as chess. Rather than measuring absolute performance on fixed tasks, these methods estimate the *relative* strength of models from direct comparisons of their outputs. The best-known implementation is the platform now called **[Arena](https://systems-analysis.info/eng/LMArena_(Chatbot_Arena) "LMArena (Chatbot Arena)")** (originally **LMSYS Chatbot Arena**, later **LMArena**), where users compare the responses of two anonymous models to the same prompt and vote for the one they prefer.<sup>[\[1\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-lmsys_arena_2023-1)</sup>

Although the approach is popularly described as "Elo" ranking — after the Elo rating system used in its first version — the leaderboard has since moved to a Bradley–Terry maximum-likelihood formulation, and the operators renamed the published metric **Arena Score**. The word "Elo" nonetheless persists as an informal label for the resulting scores.<sup>[\[2\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-lmsys_bt_2023-2)[\[3\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-lmsys_arenascore_2024-3)</sup>

Unlike traditional [benchmarks](https://systems-analysis.info/eng/LLM_benchmarks "LLM benchmarks"), which measure absolute performance on specific tasks, preference-based ranking determines relative ability from votes cast by human evaluators. A higher score reflects stronger aggregated human preference over the platform's particular population of users, prompts, and competing models — not a universal, task-independent measure of model ability.<sup>[\[1\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-lmsys_arena_2023-1)</sup>

## History

### Origin of the Elo rating system

The Elo rating system is named after **Arpad Elo** (Arpad Emmerich Elo; Hungarian: *Élő Árpád Imre*; 1903–1992), a Hungarian-American physicist and chess master who taught physics at Marquette University in Milwaukee. Because "Elo" is a surname, it is written in mixed case rather than as an acronym.<sup>[\[4\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-fide_elo-4)</sup> Elo developed the system in the late 1950s as a more statistically grounded replacement for the earlier Harkness system, whose ratings many observers considered inaccurate; he first described it in a series of papers from 1961 onward.<sup>[\[5\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-elo1978-5)</sup>

- The United States Chess Federation (USCF) adopted Elo's system in 1960.
- The World Chess Federation (FIDE) adopted it in 1970.<sup>[\[5\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-elo1978-5)</sup>

### Adaptation for language models

The use of preference ratings to evaluate LLMs began with **LMSYS Chatbot Arena**, publicly introduced in a blog post on 3 May 2023; the first published leaderboard already covered voting data collected from about 24 April 2023.<sup>[\[1\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-lmsys_arena_2023-1)</sup> The platform was developed by members of LMSYS and UC Berkeley SkyLab; LMSYS itself grew out of a multi-university collaboration that included UC Berkeley, Stanford, UC San Diego, Carnegie Mellon University, and MBZUAI.<sup>[\[6\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-lmsys_policy_2024-6)</sup>

The platform was subsequently rebranded and spun out: it moved to a dedicated site, lmarena.ai (LMArena), in September 2024; the team incorporated as an independent company in April 2025; and on 28 January 2026 it was renamed **Arena** and moved to the domain arena.ai. Older links, such as the LMSYS leaderboard formerly hosted on Hugging Face, are now largely historical. A detailed timeline is given in the article on [LMArena (Chatbot Arena)](https://systems-analysis.info/eng/LMArena_(Chatbot_Arena) "LMArena (Chatbot Arena)").<sup>[\[7\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-lmsys_newsite_2024-7)</sup>

## Methodology

### Mathematical foundations

#### Classical Elo system (iterative)

In the classical Elo system, a rating is updated *incrementally* after each individual match. The expected probability that model A defeats model B is given by a logistic curve:

$$
P(A > B) = \frac{1}{1 + 10^{(R_{B} - R_{A})/400}}
$$

where $R_{A}$ and $R_{B}$ are the current ratings before the comparison. After an outcome is observed, the rating of model A is updated as:

$$
R'_{A} = R_{A} + K \times (S_{A} - E_{A})
$$

where $K$ is the development coefficient (K-factor), $S_{A}$ is the actual result (1 for a win, 0.5 for a draw, 0 for a loss), and $E_{A}$ is the expected result.<sup>[\[5\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-elo1978-5)</sup>

The main drawback of this approach for evaluating LLMs is its *dependence on the order of matches*: because ratings are recomputed step by step, the final result can shift depending on the sequence in which games are processed. This behaviour suits human players, whose skill changes over time, but is less appropriate for models whose behaviour is essentially fixed. (Open-weight models are effectively static, whereas hosted proprietary models may change silently, which is why the operators try to pin specific API versions.)<sup>[\[2\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-lmsys_bt_2023-2)</sup>

#### Bradley–Terry model and maximum-likelihood estimation

To remove the dependence on match order, modern versions of the platform adopted the **Bradley–Terry model**. The probability that the response of model $i$ is preferred over that of model $j$ is:

$$
P(i > j) = \frac{e^{\beta_{i}}}{e^{\beta_{i}} + e^{\beta_{j}}}
$$

where $\beta_{i}$ and $\beta_{j}$ are the model coefficients (ratings). Rather than updating scores after each match, the system estimates all coefficients *simultaneously* from the entire set of collected votes using maximum-likelihood estimation (MLE) — equivalent to fitting a logistic regression over all pairwise comparisons. This makes the computation global and independent of chronological order.<sup>[\[2\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-lmsys_bt_2023-2)[\[8\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-boubdir2023-8)</sup>

For readability, the platform rescales the fitted coefficients — by convention multiplying them by 400 and adding 1000 — so that scores fall in a familiar, chess-like range. This rescaling does not affect predictions; and because the Bradley–Terry model uses a different logistic base than the classical Elo formula, the resulting figures are not numerically identical to chess Elo ratings, which is one further reason the operators adopted the name "Arena Score." Confidence intervals are obtained by bootstrapping, and ties are counted as half a win and half a loss.<sup>[\[2\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-lmsys_bt_2023-2)</sup>

The transition from the incremental online Elo system to the Bradley–Terry formulation was announced on 7 December 2023, motivated by the observations that the full comparison history is available and that most models are static, so a centralized estimate is both feasible and more stable.<sup>[\[2\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-lmsys_bt_2023-2)</sup> In June 2024 the operators renamed the "Elo rating" column to "Arena Score," noting that the quantity had in fact been a Bradley–Terry coefficient rather than a classical Elo rating.<sup>[\[3\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-lmsys_arenascore_2024-3)</sup>

#### Style control

In August 2024 the platform introduced *style control*. Stylistic attributes — such as response length and the use of Markdown headers, bold text, and lists — are added to the Bradley–Terry regression as explicit covariates, and their estimated effect is factored out when computing a model's score. The aim is to isolate a model's substantive quality from confounding stylistic preferences, so that a model is not rewarded merely for producing longer or more heavily formatted answers.<sup>[\[9\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-lmsys_style_2024-9)</sup>

## Evaluation process

1.  **Anonymous comparison:** the user interacts with two anonymous models in parallel for the same prompt.
2.  **Voting:** after reading both responses, the user selects the preferred one (or declares a tie).
3.  **Identity reveal:** the model names are shown only after the vote.
4.  **Rating update:** scores are recomputed from the accumulated votes, typically in batch, to improve stability.<sup>[\[1\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-lmsys_arena_2023-1)</sup>

## Advantages and limitations

### Advantages

- **Interpretability:** the underlying idea — who beats whom, and by how much — is easy to understand.
- **Scalability:** models can be compared without an exhaustive set of pairwise matchups.
- **Alignment with human preference:** scores reflect actual user choices on open-ended tasks rather than fixed multiple-choice benchmarks.

### Limitations

- **Volatility.** Individual Elo computations can be unstable; ratings become reliable only after many comparisons.<sup>[\[8\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-boubdir2023-8)</sup>
- **Non-transitivity.** Preferences need not satisfy the condition that A \> B and B \> C imply A \> C, which conflicts with a core assumption of the rating models.<sup>[\[8\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-boubdir2023-8)</sup>
- **Sensitivity to sampling and order.** Robust ratings require large amounts of data, and, under the classical scheme, results are sensitive to the order in which comparisons are aggregated.<sup>[\[8\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-boubdir2023-8)</sup>
- **Style and verbosity bias.** Users may favour longer or more heavily formatted answers; the style-control mechanism was introduced specifically to counteract this.<sup>[\[9\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-lmsys_style_2024-9)</sup>
- **Prompt-distribution bias.** A score reflects the distribution of prompts submitted on the platform, not uniform coverage of all possible tasks.<sup>[\[10\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-chiang2024-10)</sup>
- **Non-stationarity of hosted models.** Proprietary models served through APIs can change without notice, so the platform attempts to fix specific versions.<sup>[\[2\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-lmsys_bt_2023-2)</sup>
- **Fragility of top rankings.** Because all ratings are coupled, top positions can be sensitive to tiny amounts of data: one study found that dropping as little as 0.003% of human preferences can change the top-ranked model.<sup>[\[11\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-huang2025-11)</sup>
- **Vulnerability to vote rigging.** The interconnected rating mechanism enables "omnipresent" manipulation — influencing a target model's ranking through votes in battles where the target does not even appear — using only hundreds of crafted votes.<sup>[\[12\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-min2025-12)</sup>
- **Institutional and disclosure bias.** Some researchers have argued that private pre-release testing, selective disclosure of results, and asymmetric access to battle data can distort the leaderboard — for example, by letting large providers test many private variants and reveal only the best, while open-weight models are deprecated more often. The platform's operators have disputed the magnitude of these effects while acknowledging the need for clearer policies and greater transparency.<sup>[\[13\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-singh2025-13)[\[14\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-arena_response-14)</sup>
- **Annotator reliability.** Standard Elo-style methods weight every vote equally, ignoring differences in the reliability of the people (or models) casting them. Frameworks such as am-ELO jointly estimate, by maximum likelihood, both model strength and each annotator's reliability, allowing the influence of unreliable or adversarial voters to be down-weighted.<sup>[\[15\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-amelo2025-15)</sup>
- **Non-transitivity in automated (LLM-as-a-judge) variants.** Chatbot Arena itself relies on human votes, but many derived benchmarks that scale the approach — such as AlpacaEval and MT-Bench — use an LLM as the judge. In that setting, judges exhibit position bias and non-transitive preferences, so the resulting rankings become sensitive to the choice of baseline model.<sup>[\[16\]](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_note-xu2025-16)</sup>

## Conclusion

Preference-based (Elo-style) ranking has become an important part of the LLM evaluation ecosystem, offering an intuitive way to compare models on open-ended tasks according to human judgement. The move from the classical Elo update to the Bradley–Terry/MLE formulation, together with style control and bootstrapped confidence intervals, has made rankings substantially more stable and better calibrated. At the same time, documented issues — volatility, non-transitivity, sampling and style biases, fragility, disclosure asymmetries, and susceptibility to manipulation — show that no single preference score fully captures model capability. Ongoing work, including annotator-aware models such as am-ELO, points toward combining multiple evaluation approaches for a more complete picture.

## External links

- <a href="https://arena.ai/leaderboard/text" class="external text" rel="nofollow">Arena (LMArena) text leaderboard</a> — the current official leaderboard.
- <a href="https://lmsys.org/blog/2023-05-03-arena/" class="external text" rel="nofollow">"Chatbot Arena: Benchmarking LLMs in the Wild with Elo Ratings"</a> — the original LMSYS announcement.

## See also

- [LMArena (Chatbot Arena)](https://systems-analysis.info/eng/LMArena_(Chatbot_Arena) "LMArena (Chatbot Arena)")
- [LLM benchmarks](https://systems-analysis.info/eng/LLM_benchmarks "LLM benchmarks")

## Literature

**Core references**

- Chiang, W.-L. et al. (2024). *Chatbot Arena: An Open Platform for Evaluating LLMs by Human Preference*. <a href="https://arxiv.org/abs/2403.04132" class="external text" rel="nofollow">arXiv:2403.04132</a>.
- Boubdir, M. et al. (2023). *Elo Uncovered: Robustness and Best Practices in Language Model Evaluation*. <a href="https://arxiv.org/abs/2311.17295" class="external text" rel="nofollow">arXiv:2311.17295</a>.
- Daynauth, R. et al. (2025). *Ranking Unraveled: Recipes for LLM Rankings in Head-to-Head AI Combat*. <a href="https://arxiv.org/abs/2411.14483" class="external text" rel="nofollow">arXiv:2411.14483</a>.
- Huang, J. Y. et al. (2025). *Dropping Just a Handful of Preferences Can Change Top Large Language Model Rankings*. <a href="https://arxiv.org/abs/2508.11847" class="external text" rel="nofollow">arXiv:2508.11847</a>.
- Min, R. et al. (2025). *Improving Your Model Ranking on Chatbot Arena by Vote Rigging*. <a href="https://arxiv.org/abs/2501.17858" class="external text" rel="nofollow">arXiv:2501.17858</a>.
- Liu, Z. et al. (2025). *am-ELO: A Stable Framework for Arena-based LLM Evaluation*. <a href="https://arxiv.org/abs/2505.03475" class="external text" rel="nofollow">arXiv:2505.03475</a>.
- Xu, Y. et al. (2025). *Investigating Non-Transitivity in LLM-as-a-Judge*. <a href="https://arxiv.org/abs/2502.14074" class="external text" rel="nofollow">arXiv:2502.14074</a>.
- Singh, S. et al. (2025). *The Leaderboard Illusion*. <a href="https://arxiv.org/abs/2504.20879" class="external text" rel="nofollow">arXiv:2504.20879</a>.
- Ameli, S. et al. (2024). *A Statistical Framework for Ranking LLM-Based Chatbots*. <a href="https://arxiv.org/abs/2412.18407" class="external text" rel="nofollow">arXiv:2412.18407</a>.

**Technical background**

- Elo, A. E. (1978). *The Rating of Chessplayers, Past and Present*. Arco Publishing. <a href="https://archive.org/details/ratingofchesspla00unse" class="external text" rel="nofollow">archive.org</a>.
- Bradley, R. A.; Terry, M. E. (1952). *Rank Analysis of Incomplete Block Designs: I. The Method of Paired Comparisons*. *Biometrika* 39(3/4): 324–345.
- Chatzi, I. et al. (2024). *Prediction-Powered Ranking of Large Language Models*. <a href="https://arxiv.org/abs/2402.17826" class="external text" rel="nofollow">arXiv:2402.17826</a>.
- Liu, Y. et al. (2024). *Aligning with Human Judgement: The Role of Pairwise Preference in Large Language Model Evaluators*. <a href="https://arxiv.org/abs/2403.16950" class="external text" rel="nofollow">arXiv:2403.16950</a>.
- Sun, H.; Shen, Y.; Ton, J.-F. (2024). *Rethinking Bradley-Terry Models in Preference-Based Reward Modeling: Foundations, Theory, and Alternatives*. <a href="https://arxiv.org/abs/2411.04991" class="external text" rel="nofollow">arXiv:2411.04991</a>.
- Tang, S.; Wang, Y.; Jin, C. (2025). *Is Elo Rating Reliable? A Study Under Model Misspecification*. <a href="https://arxiv.org/abs/2502.10985" class="external text" rel="nofollow">arXiv:2502.10985</a>.
- Glickman, M. E. (2025). *Paired Comparison Models with Strength-Dependent Ties and Order Effects*. <a href="https://arxiv.org/abs/2505.24783" class="external text" rel="nofollow">arXiv:2505.24783</a>.
- Glickman, M. E. (2025). *Rating Competitors in Games with Strength-Dependent Tie Probabilities*. <a href="https://arxiv.org/abs/2506.11354" class="external text" rel="nofollow">arXiv:2506.11354</a>.
- Hua, H.-F.; Dong, J.; Liu, Z. (2023). *Rating of Players by Laplace Approximation and Dynamic Bradley–Terry Model*. <a href="https://arxiv.org/abs/2310.10386" class="external text" rel="nofollow">arXiv:2310.10386</a>.

**Elo-style ratings outside model leaderboards**

- Nair, A. et al. (2025). *Tournament of Prompts: Evolving LLM Instructions Through Structured Debates and Elo Ratings*. <a href="https://arxiv.org/abs/2506.00178" class="external text" rel="nofollow">arXiv:2506.00178</a>.

## References

1.  <span id="cite_note-lmsys_arena_2023-1">↑ <sup>[1.0](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-lmsys_arena_2023_1-0)</sup> <sup>[1.1](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-lmsys_arena_2023_1-1)</sup> <sup>[1.2](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-lmsys_arena_2023_1-2)</sup> <sup>[1.3](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-lmsys_arena_2023_1-3)</sup> “Chatbot Arena: Benchmarking LLMs in the Wild with Elo Ratings”. *LMSYS Org*, 3 May 2023. <a href="https://lmsys.org/blog/2023-05-03-arena/" class="external autonumber" rel="nofollow">[1]</a></span>
2.  <span id="cite_note-lmsys_bt_2023-2">↑ <sup>[2.0](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-lmsys_bt_2023_2-0)</sup> <sup>[2.1](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-lmsys_bt_2023_2-1)</sup> <sup>[2.2](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-lmsys_bt_2023_2-2)</sup> <sup>[2.3](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-lmsys_bt_2023_2-3)</sup> <sup>[2.4](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-lmsys_bt_2023_2-4)</sup> <sup>[2.5](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-lmsys_bt_2023_2-5)</sup> “Chatbot Arena: New models & Elo system update”. *LMSYS Org*, 7 December 2023. <a href="https://lmsys.org/blog/2023-12-07-leaderboard/" class="external autonumber" rel="nofollow">[2]</a></span>
3.  <span id="cite_note-lmsys_arenascore_2024-3">↑ <sup>[3.0](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-lmsys_arenascore_2024_3-0)</sup> <sup>[3.1](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-lmsys_arenascore_2024_3-1)</sup> “The Multimodal Arena is Here!”. *LMSYS Org*, 27 June 2024. <a href="https://lmsys.org/blog/2024-06-27-multimodal/" class="external autonumber" rel="nofollow">[3]</a></span>
4.  <span id="cite_note-fide_elo-4">[↑](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-fide_elo_4-0) “Anniversary of Arpad Elo – rating system that changed chess world”. *International Chess Federation (FIDE)*. <a href="https://www.fide.com/anniversary-of-arpad-elo-rating-system-that-changed-chess-world/" class="external autonumber" rel="nofollow">[4]</a></span>
5.  <span id="cite_note-elo1978-5">↑ <sup>[5.0](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-elo1978_5-0)</sup> <sup>[5.1](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-elo1978_5-1)</sup> <sup>[5.2](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-elo1978_5-2)</sup> Elo, A. E. (1978). *The Rating of Chessplayers, Past and Present*. Arco Publishing. (Preface: the system was used by the USCF from 1960 and adopted by FIDE in 1970.)</span>
6.  <span id="cite_note-lmsys_policy_2024-6">[↑](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-lmsys_policy_2024_6-0) “LMSYS Chatbot Arena: Live and Community-Driven LLM Evaluation”. *LMSYS Org*, 1 March 2024. <a href="https://lmsys.org/blog/2024-03-01-policy/" class="external autonumber" rel="nofollow">[5]</a></span>
7.  <span id="cite_note-lmsys_newsite_2024-7">[↑](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-lmsys_newsite_2024_7-0) “Announcing a New Site for Chatbot Arena”. *LMSYS Org*, 20 September 2024. <a href="https://lmsys.org/blog/2024-09-20-arena-new-site/" class="external autonumber" rel="nofollow">[6]</a></span>
8.  <span id="cite_note-boubdir2023-8">↑ <sup>[8.0](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-boubdir2023_8-0)</sup> <sup>[8.1](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-boubdir2023_8-1)</sup> <sup>[8.2](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-boubdir2023_8-2)</sup> <sup>[8.3](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-boubdir2023_8-3)</sup> Boubdir, M. et al. “Elo Uncovered: Robustness and Best Practices in Language Model Evaluation”. *arXiv:2311.17295*. <a href="https://arxiv.org/abs/2311.17295" class="external autonumber" rel="nofollow">[7]</a></span>
9.  <span id="cite_note-lmsys_style_2024-9">↑ <sup>[9.0](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-lmsys_style_2024_9-0)</sup> <sup>[9.1](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-lmsys_style_2024_9-1)</sup> “Does style matter? Disentangling style and substance in Chatbot Arena”. *LMSYS Org*, 28 August 2024. <a href="https://lmsys.org/blog/2024-08-28-style-control/" class="external autonumber" rel="nofollow">[8]</a></span>
10. <span id="cite_note-chiang2024-10">[↑](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-chiang2024_10-0) Chiang, W.-L. et al. “Chatbot Arena: An Open Platform for Evaluating LLMs by Human Preference”. *arXiv:2403.04132*. <a href="https://arxiv.org/abs/2403.04132" class="external autonumber" rel="nofollow">[9]</a></span>
11. <span id="cite_note-huang2025-11">[↑](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-huang2025_11-0) Huang, J. Y. et al. “Dropping Just a Handful of Preferences Can Change Top Large Language Model Rankings”. *arXiv:2508.11847*. <a href="https://arxiv.org/abs/2508.11847" class="external autonumber" rel="nofollow">[10]</a></span>
12. <span id="cite_note-min2025-12">[↑](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-min2025_12-0) Min, R. et al. “Improving Your Model Ranking on Chatbot Arena by Vote Rigging”. *arXiv:2501.17858*. <a href="https://arxiv.org/abs/2501.17858" class="external autonumber" rel="nofollow">[11]</a></span>
13. <span id="cite_note-singh2025-13">[↑](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-singh2025_13-0) Singh, S. et al. (2025). “The Leaderboard Illusion”. *arXiv:2504.20879*. <a href="https://arxiv.org/abs/2504.20879" class="external autonumber" rel="nofollow">[12]</a></span>
14. <span id="cite_note-arena_response-14">[↑](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-arena_response_14-0) “LMArena Response to 'The Leaderboard Illusion' Writeup”. *Arena / LMArena Blog*. <a href="https://arena.ai/blog/our-response/" class="external autonumber" rel="nofollow">[13]</a></span>
15. <span id="cite_note-amelo2025-15">[↑](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-amelo2025_15-0) Liu, Z. et al. “am-ELO: A Stable Framework for Arena-based LLM Evaluation”. *arXiv:2505.03475*. <a href="https://arxiv.org/abs/2505.03475" class="external autonumber" rel="nofollow">[14]</a></span>
16. <span id="cite_note-xu2025-16">[↑](https://systems-analysis.info/eng/Elo_ranking_of_language_models#cite_ref-xu2025_16-0) Xu, Y. et al. “Investigating Non-Transitivity in LLM-as-a-Judge”. *arXiv:2502.14074*. <a href="https://arxiv.org/abs/2502.14074" class="external autonumber" rel="nofollow">[15]</a></span>
