Table of Contents
Fetching ...

Verbosity $\neq$ Veracity: Demystify Verbosity Compensation Behavior of Large Language Models

Yusen Zhang, Sarkar Snigdha Sarathi Das, Rui Zhang

TL;DR

Verbosity Compensation (VC) is identified as a widespread undesirable behavior in LLMs where verbose outputs are compressible without loss of meaning, correlating with higher model uncertainty. The authors formalize VC, introduce a VC detector, and establish metrics to compare verbose and concise outputs across five long-context QA/reasoning datasets with 14 LLMs. They show VC significantly impacts veracity, even persisting in Chain-of-Thought reasoning, and demonstrate a cascade-model strategy (CaSel) and routing methods that markedly reduce VC while preserving performance. The work provides a benchmark, empirical insights into VC’s relationship with uncertainty, and practical mitigation with cascading routing, offering tangible paths to more reliable LLM deployment in knowledge-intensive tasks.

Abstract

Although Large Language Models (LLMs) have demonstrated their strong capabilities in various tasks, recent work has revealed LLMs also exhibit undesirable behaviors, such as hallucination and toxicity, limiting their reliability and broader adoption. In this paper, we discover an understudied type of undesirable behavior of LLMs, which we term Verbosity Compensation (VC), similar to the hesitation behavior of humans under uncertainty, where they respond with excessive words such as repeating questions, introducing ambiguity, or providing excessive enumeration. We present the first work that defines and analyzes Verbosity Compensation, explores its causes, and proposes a simple mitigating approach. Our experiments, conducted on five datasets of knowledge and reasoning-based QA tasks with 14 newly developed LLMs, reveal three conclusions. 1) We reveal a pervasive presence of VC across all models and all datasets. Notably, GPT-4 exhibits a VC frequency of 50.40%. 2) We reveal the large performance gap between verbose and concise responses, with a notable difference of 27.61% on the Qasper dataset. We also demonstrate that this difference does not naturally diminish as LLM capability increases. Both 1) and 2) highlight the urgent need to mitigate the frequency of VC behavior and disentangle verbosity with veracity. We propose a simple yet effective cascade algorithm that replaces the verbose responses with the other model-generated responses. The results show that our approach effectively alleviates the VC of the Mistral model from 63.81% to 16.16% on the Qasper dataset. 3) We also find that verbose responses exhibit higher uncertainty across all five datasets, suggesting a strong connection between verbosity and model uncertainty. Our dataset and code are available at https://github.com/psunlpgroup/VerbosityLLM.

Verbosity $\neq$ Veracity: Demystify Verbosity Compensation Behavior of Large Language Models

TL;DR

Verbosity Compensation (VC) is identified as a widespread undesirable behavior in LLMs where verbose outputs are compressible without loss of meaning, correlating with higher model uncertainty. The authors formalize VC, introduce a VC detector, and establish metrics to compare verbose and concise outputs across five long-context QA/reasoning datasets with 14 LLMs. They show VC significantly impacts veracity, even persisting in Chain-of-Thought reasoning, and demonstrate a cascade-model strategy (CaSel) and routing methods that markedly reduce VC while preserving performance. The work provides a benchmark, empirical insights into VC’s relationship with uncertainty, and practical mitigation with cascading routing, offering tangible paths to more reliable LLM deployment in knowledge-intensive tasks.

Abstract

Although Large Language Models (LLMs) have demonstrated their strong capabilities in various tasks, recent work has revealed LLMs also exhibit undesirable behaviors, such as hallucination and toxicity, limiting their reliability and broader adoption. In this paper, we discover an understudied type of undesirable behavior of LLMs, which we term Verbosity Compensation (VC), similar to the hesitation behavior of humans under uncertainty, where they respond with excessive words such as repeating questions, introducing ambiguity, or providing excessive enumeration. We present the first work that defines and analyzes Verbosity Compensation, explores its causes, and proposes a simple mitigating approach. Our experiments, conducted on five datasets of knowledge and reasoning-based QA tasks with 14 newly developed LLMs, reveal three conclusions. 1) We reveal a pervasive presence of VC across all models and all datasets. Notably, GPT-4 exhibits a VC frequency of 50.40%. 2) We reveal the large performance gap between verbose and concise responses, with a notable difference of 27.61% on the Qasper dataset. We also demonstrate that this difference does not naturally diminish as LLM capability increases. Both 1) and 2) highlight the urgent need to mitigate the frequency of VC behavior and disentangle verbosity with veracity. We propose a simple yet effective cascade algorithm that replaces the verbose responses with the other model-generated responses. The results show that our approach effectively alleviates the VC of the Mistral model from 63.81% to 16.16% on the Qasper dataset. 3) We also find that verbose responses exhibit higher uncertainty across all five datasets, suggesting a strong connection between verbosity and model uncertainty. Our dataset and code are available at https://github.com/psunlpgroup/VerbosityLLM.

Paper Structure

This paper contains 49 sections, 2 equations, 8 figures, 16 tables, 3 algorithms.

Figures (8)

  • Figure 1: An illustration of comparison between concise and verbose responses. In the first response, LLM generates a concise answer, while in the second and third responses, LLM performs repeating, and ambiguity, leading to a verbose response with low performance and high uncertainty.
  • Figure 2: Frequency of Verbosity Compensation. All models exhibit intensive verbosity compensation behavior. Among them, llama3-70b has the lowest frequency on average.
  • Figure 3: Human annotation of five types of verbosity compensation behavior on five datasets. Different models and datasets show diverse patterns of verbosity types.
  • Figure 4: Uncentainty quantification of three open-sourced and one close-sourced models. The scores are averaged across all five datasets. The uncertainty increases with the increasing length of the generated output for all models.
  • Figure 5: Routing performance of diverse models and datasets. X-axis (unit 10$^{-3}$ dollars) is the average cost of running one sample. The Y-axis is the F-1 score averaged across the samples on one dataset. Routing performance (green line) is higher than the linear combination of the baseline models (blue line) with all datasets and models.
  • ...and 3 more figures