Dissecting Contextual Word Embeddings: Architecture and Representation
Matthew E. Peters, Mark Neumann, Luke Zettlemoyer, Wen-tau Yih
TL;DR
The paper conducts a comprehensive empirical analysis of contextual word representations derived from bidirectional language models, comparing LSTM, Transformer, and gated CNN architectures. It demonstrates that all architectures produce high-quality contextual embeddings that outperform non-contextual word vectors across multiple NLP tasks, while revealing a depth-dependent hierarchy: morphology at the embedding layer, local syntax in lower contextual layers, and long-range semantics such as coreference in upper layers. The study introduces ELMo-style pooling to combine layer representations, and provides extensive probing (pos tagging, parsing, coreference) to show how syntactic and semantic information is distributed across layers. Overall, biLMs emerge as versatile, architecture-agnostic feature extractors capable of enhancing diverse NLP tasks without task-specific supervision beyond downstream models.
Abstract
Contextual word representations derived from pre-trained bidirectional language models (biLMs) have recently been shown to provide significant improvements to the state of the art for a wide range of NLP tasks. However, many questions remain as to how and why these models are so effective. In this paper, we present a detailed empirical study of how the choice of neural architecture (e.g. LSTM, CNN, or self attention) influences both end task accuracy and qualitative properties of the representations that are learned. We show there is a tradeoff between speed and accuracy, but all architectures learn high quality contextual representations that outperform word embeddings for four challenging NLP tasks. Additionally, all architectures learn representations that vary with network depth, from exclusively morphological based at the word embedding layer through local syntax based in the lower contextual layers to longer range semantics such coreference at the upper layers. Together, these results suggest that unsupervised biLMs, independent of architecture, are learning much more about the structure of language than previously appreciated.
