Quantifying and Enabling the Interpretability of CLIP-like Models
Avinash Madasu, Yossi Gandelsman, Vasudev Lal, Phillip Howard
TL;DR
This work tackles the interpretability of CLIP-like vision-language transformers by decomposing attention heads with the TextSpan algorithm and labeling head properties through in-context learning. It introduces two metrics, the entanglement score and the association score, to quantify how cleanly properties map to individual heads and how independently heads attend to those properties. Across six CLIP variants, the study finds that larger models tend to be more interpretable, exhibiting reduced entanglement and higher property-consistency. To translate insights into practice, the authors implement CLIP-InterpreT, a tool offering five analyses (including per-head segmentation and nearest-neighbor searches) to help users understand the inner workings of CLIP-like models in real-world scenarios.
Abstract
CLIP is one of the most popular foundational models and is heavily used for many vision-language tasks. However, little is known about the inner workings of CLIP. To bridge this gap we propose a study to quantify the interpretability in CLIP like models. We conduct this study on six different CLIP models from OpenAI and OpenCLIP which vary by size, type of pre-training data and patch size. Our approach begins with using the TEXTSPAN algorithm and in-context learning to break down individual attention heads into specific properties. We then evaluate how easily these heads can be interpreted using new metrics which measure property consistency within heads and property disentanglement across heads. Our findings reveal that larger CLIP models are generally more interpretable than their smaller counterparts. To further assist users in understanding the inner workings of CLIP models, we introduce CLIP-InterpreT, a tool designed for interpretability analysis. CLIP-InterpreT offers five types of analyses: property-based nearest neighbor search, per-head topic segmentation, contrastive segmentation, per-head nearest neighbors of an image, and per-head nearest neighbors of text.
