CVAIFeb 9

FlattenGPT: Depth Compression for Transformer with Layer Flattening

arXiv:2602.08858v1h-index: 6
Originality Incremental advance
AI Analysis

This addresses efficiency issues in large language models for deployment, though it is incremental as it builds on existing depth compression and pruning techniques.

The paper tackles the problem of transformer model redundancy by proposing FlattenGPT, a depth compression method that flattens adjacent blocks to reduce network depth while preserving learned knowledge, achieving 90-96% of zero-shot performance with 20% compression on models like LLaMA-2/3 and Qwen-1.5.

Recent works have indicated redundancy across transformer blocks, prompting the research of depth compression to prune less crucial blocks. However, current ways of entire-block pruning suffer from risks of discarding meaningful cues learned in those blocks, leading to substantial performance degradation. As another line of model compression, channel pruning can better preserve performance, while it cannot reduce model depth and is challenged by inconsistent pruning ratios for individual layers. To pursue better model compression and acceleration, this paper proposes \textbf{FlattenGPT}, a novel way to detect and reduce depth-wise redundancies. By flatting two adjacent blocks into one, it compresses the network depth, meanwhile enables more effective parameter redundancy detection and removal. FlattenGPT allows to preserve the knowledge learned in all blocks, and remains consistent with the original transformer architecture. Extensive experiments demonstrate that FlattenGPT enhances model efficiency with a decent trade-off to performance. It outperforms existing pruning methods in both zero-shot accuracies and WikiText-2 perplexity across various model types and parameter sizes. On LLaMA-2/3 and Qwen-1.5 models, FlattenGPT retains 90-96\% of zero-shot performance with a compression ratio of 20\%. It also outperforms other pruning methods in accelerating LLM inference, making it promising for enhancing the efficiency of transformers.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes