Attention Flows: Analyzing and Comparing Attention Mechanisms in Language Models
Joseph F DeRose, Jiayao Wang, Matthew Berger
TL;DR
This work tackles understanding how fine-tuning alters self-attention in Transformer-based language models, moving beyond static pre-training analyses to task-specific information flows. It introduces Attention Flows, a visual analytics tool that constructs an Attention Graph from per-head attention matrices $A_j^l$ across layers and uses a radial Token Rings layout to trace dependencies from input tokens to the classification token. The method defines token influence $I_l(w)$ using counts $c_l(w)$ with decay factor $\alpha$ and a threshold $\tau$ to connect tokens into bipartite graphs, enabling direct comparison between pre-trained and fine-tuned models via color and shared-vs-exclusive paths. Through use cases on textual entailment, question-answer verification, and paraphrase verification, plus user feedback, the approach demonstrates how fine-tuning reshapes attention to task-relevant cues and offers a practical tool for model interpretability and debugging.
Abstract
Advances in language modeling have led to the development of deep attention-based models that are performant across a wide variety of natural language processing (NLP) problems. These language models are typified by a pre-training process on large unlabeled text corpora and subsequently fine-tuned for specific tasks. Although considerable work has been devoted to understanding the attention mechanisms of pre-trained models, it is less understood how a model's attention mechanisms change when trained for a target NLP task. In this paper, we propose a visual analytics approach to understanding fine-tuning in attention-based language models. Our visualization, Attention Flows, is designed to support users in querying, tracing, and comparing attention within layers, across layers, and amongst attention heads in Transformer-based language models. To help users gain insight on how a classification decision is made, our design is centered on depicting classification-based attention at the deepest layer and how attention from prior layers flows throughout words in the input. Attention Flows supports the analysis of a single model, as well as the visual comparison between pre-trained and fine-tuned models via their similarities and differences. We use Attention Flows to study attention mechanisms in various sentence understanding tasks and highlight how attention evolves to address the nuances of solving these tasks.
