Papers
Topics
Authors
Recent
Search
2000 character limit reached

Do We Need Distinct Representations for Every Speech Token? Unveiling and Exploiting Redundancy in Large Speech Language Models

Published 8 Apr 2026 in cs.CL and cs.AI | (2604.06871v1)

Abstract: Large Speech LLMs (LSLMs) typically operate at high token rates (tokens/s) to ensure acoustic fidelity, yet this results in sequence lengths that far exceed the underlying semantic content, incurring prohibitive inference costs. In this paper, we empirically revisit the necessity of such granular token-level processing. Through layer-wise oracle interventions, we unveil a structured redundancy hierarchy: while shallow layers encode essential acoustic details, deep layers exhibit extreme redundancy, allowing for aggressive compression. Motivated by these findings, we introduce Affinity Pooling, a training-free, similarity-based token merging mechanism. By strategically applying this method at both input and deep layers, we effectively compress speech representations without compromising semantic information. Extensive evaluations across three tasks demonstrate that our approach reduces prefilling FLOPs by 27.48\% while maintaining competitive accuracy. Practical deployment further confirms significant efficiency gains, yielding up to $\sim$1.7$\times$ memory savings and $\sim$1.1$\times$ faster time-to-first-token on long utterances. Our results challenge the necessity of fully distinct token representations, providing new perspectives on LSLM efficiency.

Summary

  • The paper demonstrates that deep LSLM layers exhibit high semantic redundancy, enabling token retention rates as low as 25.67% without increasing WER.
  • The paper introduces Affinity Pooling, a training-free token merging algorithm that leverages cosine similarity to reduce tokens by up to 85% while maintaining performance.
  • The paper reveals a non-uniform redundancy structure across layers, with middle layers prone to instability and deep layers robust to aggressive compression.

Efficient Speech Token Representation and Redundancy in Large Speech LLMs

Motivation and Problem Statement

Large Speech LLMs (LSLMs) process audio using high tokenization rates—often at 12.5 to 25 tokens per second—resulting in input sequences that are significantly longer than the accompanying semantic content. This design preserves acoustic fidelity but incurs substantial computational and memory costs. Despite clear evidence of temporal redundancy in speech, prevailing LSLM pipelines lack mechanisms for selectively reducing redundant tokens at various stages. Additionally, the distribution of redundancy across model layers remains undercharacterized, thwarting efforts to deploy efficient, principled compression methods for speech token streams.

Layerwise Redundancy Analysis via Oracle Interventions

The paper conducts a systematic analysis of layerwise redundancy in two state-of-the-art LSLMs: Qwen2-Audio and Kimi-Audio. The approach leverages forced alignment to partition the audio token sequence into word-aligned semantic units and applies controlled interventions—compression operators including random drop, uniform drop, and uniform merge—at specific layers. Semantic recoverability is then quantified through Word Error Rate (WER) and clamped WER (cWER) on automatic speech recognition (ASR) tasks.

Key findings from these oracle interventions include:

  • Redundancy increases monotonically with depth: Deep layers can sustain retention rates as low as 25.67% of the original tokens with almost no increase in WER, suggesting that these representations are extremely compressible.
  • Non-uniform redundancy structure: Uniform Drop consistently outperforms Random Drop, indicating a structured temporal redundancy, while Uniform Merge provides the best results, likely due to the distributed encoding of semantic information.
  • Acoustic-to-semantic transition: Middle layers demonstrate high instability and susceptibility to repetition, hallucination, and semantic drift, marking a critical transition from acoustic to semantic abstraction. Figure 1

    Figure 1: Layerwise oracle interventions on Qwen2-Audio and Kimi-Audio. Both clamped and standard WER show deep layers are highly robust to token compression.

    Figure 2

    Figure 2: Cosine similarity metrics across layers reveal a rise–fall–rise trajectory, emphasizing local instability at intermediate depths and high redundancy at deep layers.

The cosine similarity analysis further reveals a "rise–fall–rise" pattern in local and global token similarity, with deep layers mapping multiple tokens corresponding to the same semantic unit into highly similar vectors. This directly explains the superior compressibility of deep representations.

Affinity Pooling: Training-Free Similarity-Based Compression

Motivated by the observed structure of redundancy, the authors introduce Affinity Pooling, an unsupervised, training-free token merging algorithm. This method aggregates temporally adjacent tokens based on cosine similarity, leveraging a configurable lookback window and similarity threshold.

Affinity Pooling is applied at both the input and deep layers, forming the Dual Affinity Pooling (DAP) approach. The method achieves three core outcomes:

  • At the input, Affinity Pooling surpasses even supervised, alignment-based oracle methods in WER with equivalent or higher token retention rates.
  • At deep layers, Affinity Pooling compresses the Qwen2-Audio token stream to 5.18% of its original length (at Ï„=0.6\tau=0.6) without any loss in ASR accuracy. Figure 3

    Figure 3: Layerwise dynamics of Affinity Pooling: aggressive thresholds yield drastic compression at deep layers with minimal WER increase.

Semantic Granularity and Decoding Robustness

Qualitative visualizations show that Affinity Pooling produces small token groups at shallow layers, while deep models merge entire phrases or multi-word units into individual tokens, confirming semantic abstraction and high information density. Figure 4

Figure 4: Visualization of Affinity Pooling (τ=0.7\tau=0.7, ω=3\omega=3) on Qwen2-Audio and Kimi-Audio; deep layers group multiple words into single, highly similar token clusters.

Representative decoding trajectories expose strong stability at input and deep layers under compression, but reveal failures such as looping or semantic drift at intermediate depths. Figure 5

Figure 5: Decoding trajectories reveal that semantic integrity is preserved in deep and shallow layers even under heavy compression, while middle layers are unstable.

Efficiency Gains and Empirical Performance

Experimental results on Qwen2-Audio and Kimi-Audio over ASR, speech QA, and speech translation benchmarks confirm that Affinity Pooling and DAP yield significant computational savings:

  • Aggressive compression (DAP, Ï„in=0.8\tau_{in}=0.8, Ï„deep=0.7\tau_{deep}=0.7) achieves a Final Retention Ratio of 14.91% and a 27.48% reduction in FLOPs, with unchanged ASR (WER), QA (Acc), and ST (BLEU) scores.
  • Deployment efficiency: On NVIDIA H200 hardware, DAP yields up to 1.7× memory savings and up to 1.1× speedup in time-to-first-token for long utterances.

Comparisons to signal-level speedup and linear interpolation baselines under fixed token budgets highlight the superior robustness of Affinity Pooling, especially at compression ratios below 70% retention.

Hyperparameter and Sensitivity Analysis

Systematic ablations indicate:

  • The input embedding layer (l=0l=0) is ideal for early compression, while deep layers (l≥25l\geq 25 for Qwen2-Audio, l≥24l\geq 24 for Kimi-Audio) are robust to aggressive token merging.
  • The lookback window (ω\omega) should be set to 1 at the input and broadened (e.g., ω=3\omega=3) at depth to maximize semantic aggregation without accuracy loss.

(Figure 6), (Figure 7), (Figure 8)

Figure 6: Qwen2-Audio layer sensitivity validates only input and deep layers are robust to affinity-based compression.

Figure 7: Enlarging the lookback window improves deep-layer compression efficacy, but degrades input-layer fidelity.

Figure 8: Kimi-Audio layer sensitivity mirrors findings in Qwen2-Audio, with shallow and deep robustness.

Implications and Outlook

The study conclusively demonstrates that strictly distinct token representations at each speech timestep are unnecessary in deep LSLM layers, as these layers naturally abstract and replicate semantic information in highly redundant forms. This finding can fundamentally shift LSLM design and deployment, promoting dynamic, similarity-driven token pruning or merging and drastically reducing deployment costs for long utterances.

Practically, DAP can be integrated as an inference-time module—no retraining or backpropagation required—providing immediate inference acceleration and memory reduction in production ASR, speech QA, and ST systems. The empirical findings also suggest an information bottleneck transfer, with non-uniform semantic redundancy hierarchically distributed across network depths.

Theoretically, these results imply significant slacks in the representational and computational utilization of current LSLM architectures. Future models may integrate adaptive, data-driven token compression as a core architectural primitive, or even redesign token hierarchies that reflect the natural temporal and semantic structure of speech. The quantification of compression/accuracy tradeoffs provided here can enable more fine-grained control over cost/performance, particularly for edge deployment or real-time streaming applications.

Conclusion

This work establishes that LSLMs exhibit a clear, layerwise redundancy spectrum, with deep layers encoding highly compressible, semantically entangled representations. The proposed Affinity Pooling algorithm exploits this redundancy to deliver up to 85% token reduction and substantially improved inference efficiency, without degrading accuracy on ASR, QA, or ST tasks. By exposing the structural nature of speech token redundancy and validating efficient compression strategies, this research lays the groundwork for more computationally efficient and semantically faithful LSLMs in future real-world applications (2604.06871).

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.