超要約: LLM の深層学習を加速させる魔法🪄 LayerNorm Scaling を解説!
✨ ギャル的キラキラポイント ✨ ● 深層レイヤー(モデルの奥の方)がサボってた問題を解決✨ ● LayerNorm Scaling って、めっちゃシンプルなのに効果絶大! ● AI サービスがもっと賢くなって、コストも下がるかも!?
詳細解説 ● 背景 LLM(大規模言語モデル)って、賢いけど学習が大変💧モデルを深くすると、奥の方がちゃんと働かなくなる「深さの呪い」って現象があったの!
● 方法 LayerNorm Scaling は、Layer Normalization の出力をレイヤーの深さのルートで割るだけ!超簡単なのに、深層レイヤーの学習効率が上がるんだって🤩
続きは「らくらく論文」アプリで
In this paper, we introduce the Curse of Depth, a concept that highlights, explains, and addresses the recent observation in modern Large Language Models (LLMs) where nearly half of the layers are less effective than expected. We first confirm the wide existence of this phenomenon across the most popular families of LLMs such as Llama, Mistral, DeepSeek, and Qwen. Our analysis, theoretically and empirically, identifies that the underlying reason for the ineffectiveness of deep layers in LLMs is the widespread usage of Pre-Layer Normalization (Pre-LN). While Pre-LN stabilizes the training of Transformer LLMs, its output variance exponentially grows with the model depth, which undesirably causes the derivative of the deep Transformer blocks to be an identity matrix, and therefore barely contributes to the training. To resolve this training pitfall, we propose LayerNorm Scaling (LNS), which scales the variance of output of the layer normalization inversely by the square root of its depth. This simple modification mitigates the output variance explosion of deeper Transformer layers, improving their contribution. Across a wide range of model sizes (130M to 7B), our experiments show that LNS consistently outperforms previous normalization and scaling techniques in enhancing LLM pre-training performance. Moreover, this improvement seamlessly carries over to supervised fine-tuning. All these gains can be attributed to the fact that LayerNorm Scaling enables deeper layers to contribute more effectively during training. Our code is available at \href{https://github.com/lmsdss/LayerNorm-Scaling}{LayerNorm-Scaling}.