LGCVNov 23, 2024

Reassessing Layer Pruning in LLMs: New Insights and Methods

arXiv:2411.15558v124 citationsh-index: 17Has Code
Originality Incremental advance
AI Analysis

This work addresses deployment challenges for LLMs in resource-constrained environments, though it appears incremental as it refines existing pruning methods rather than introducing a fundamentally new paradigm.

The paper tackles the problem of computationally expensive layer pruning in large language models by showing that a simple approach of pruning the final 25% of layers and fine-tuning specific components yields strong performance, with the pruned Llama-3.1-8B-It model outperforming several popular LLMs of similar size.

Although large language models (LLMs) have achieved remarkable success across various domains, their considerable scale necessitates substantial computational resources, posing significant challenges for deployment in resource-constrained environments. Layer pruning, as a simple yet effective compression method, removes layers of a model directly, reducing computational overhead. However, what are the best practices for layer pruning in LLMs? Are sophisticated layer selection metrics truly effective? Does the LoRA (Low-Rank Approximation) family, widely regarded as a leading method for pruned model fine-tuning, truly meet expectations when applied to post-pruning fine-tuning? To answer these questions, we dedicate thousands of GPU hours to benchmarking layer pruning in LLMs and gaining insights across multiple dimensions. Our results demonstrate that a simple approach, i.e., pruning the final 25\% of layers followed by fine-tuning the \texttt{lm\_head} and the remaining last three layer, yields remarkably strong performance. Following this guide, we prune Llama-3.1-8B-It and obtain a model that outperforms many popular LLMs of similar size, such as ChatGLM2-6B, Vicuna-7B-v1.5, Qwen1.5-7B and Baichuan2-7B. We release the optimal model weights on Huggingface, and the code is available on GitHub.

Code Implementations1 repo
Foundations

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

Your Notes