CLNov 10, 2019

Improving BERT Fine-tuning with Embedding Normalization

arXiv:1911.03918v211 citations
Originality Incremental advance
AI Analysis

This addresses a specific optimization problem in fine-tuning BERT for NLP practitioners, but it is incremental as it builds on existing methods.

The paper tackled the issue of biased [CLS] token embeddings in BERT fine-tuning, which can cause gradient explosions and degrade performance, and proposed normalization methods that improved results on text classification tasks.

Large pre-trained sentence encoders like BERT start a new chapter in natural language processing. A common practice to apply pre-trained BERT to sequence classification tasks (e.g., classification of sentences or sentence pairs) is by feeding the embedding of [CLS] token (in the last layer) to a task-specific classification layer, and then fine tune the model parameters of BERT and classifier jointly. In this paper, we conduct systematic analysis over several sequence classification datasets to examine the embedding values of [CLS] token before the fine tuning phase, and present the biased embedding distribution issue---i.e., embedding values of [CLS] concentrate on a few dimensions and are non-zero centered. Such biased embedding brings challenge to the optimization process during fine-tuning as gradients of [CLS] embedding may explode and result in degraded model performance. We further propose several simple yet effective normalization methods to modify the [CLS] embedding during the fine-tuning. Compared with the previous practice, neural classification model with the normalized embedding shows improvements on several text classification tasks, demonstrates the effectiveness of our method.

Foundations

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

Your Notes