YingWANGG / M2IB

Code for the paper Visual Explanations of Image–Text Representations via Multi-Modal Information Bottleneck Attribution

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Visual Explanations of Image–Text Representations via Multi-Modal Information Bottleneck Attribution

This repository contains the official implementation for

Visual Explanations of Image-Text Representations via Multi-Modal Information Bottleneck Attribution.
Ying Wang*, Tim G. J. Rudner*, Andrew Gordon Wilson. NeurIPS 2023. (* indicates equal contribution)

Abstract: Vision-language pretrained models have seen remarkable success, but their application to safety-critical settings is limited by their lack of interpretability. To improve the interpretability of vision-language models such as CLIP, we propose a multi-modal information bottleneck (M2IB) approach that learns latent representations that compress irrelevant information while preserving relevant visual and textual features. We demonstrate how M2IB can be applied to attribution analysis of vision-language pretrained models, increasing attribution accuracy and improving the interpretability of such models when applied to safety-critical domains such as healthcare. Crucially, unlike commonly used unimodal attribution methods, M2IB does not require ground truth labels, making it possible to audit representations of vision-language pretrained models when multiple modalities but no ground-truth data is available. Using CLIP as an example, we demonstrate the effectiveness of M2IB attribution and show that it outperforms gradient-based, perturbation-based, and attention-based attribution methods both qualitatively and quantitatively.

View Paper


Quick start

Colab

Jupyter Notebook

python scripts/eval.py
--data_path <your data path, containing image paths and corresponding captions>
--output_path <your output path that will store the evaluation results>
--samples <number of samples randomly drawn from the image-text pairs in data_path>

Citation

If you found our paper or code useful, please cite it as:

@inproceedings{
  wang2023visual,
  title={Visual Explanations of Image-Text Representations via Multi-Modal Information Bottleneck Attribution},
  author={Ying Wang and Tim G. J. Rudner and Andrew Gordon Wilson},
  booktitle={Thirty-seventh Conference on Neural Information Processing Systems},
  year={2023},
  url={https://openreview.net/forum?id=ECvtxmVP0x}
}

About

Code for the paper Visual Explanations of Image–Text Representations via Multi-Modal Information Bottleneck Attribution


Languages

Language:Jupyter Notebook 96.3%Language:Python 3.7%