Skip to content

Add attention visualization tool #36630

Merged
ArthurZucker merged 30 commits intomainfrom
attention-utilities
Mar 19, 2025
Merged

Add attention visualization tool #36630
ArthurZucker merged 30 commits intomainfrom
attention-utilities

Conversation

@ArthurZucker
Copy link
Copy Markdown
Collaborator

@ArthurZucker ArthurZucker commented Mar 10, 2025

What does this PR do?

TODOS

  • Add some tests
  • make it work on all models

cc @yonigozlan and @zucchini-nlp @molbap

This will be available as:

from transformers.utils.attention_visualizer import AttentionMaskVisualizer
visualizer = AttentionMaskVisualizer("meta-llama/Llama-3.2-3B-Instruct")
visualizer("A normal attention mask")

visualizer = AttentionMaskVisualizer("mistralai/Mistral-Small-24B-Instruct-2501")
visualizer("A normal attention mask with a long text to see how it is displayed, and if it is displayed correctly")

visualizer = AttentionMaskVisualizer("google/paligemma2-3b-mix-224")
visualizer("<img> You are an assistant.", suffix = "What is on the image?")

visualizer = AttentionMaskVisualizer("google/gemma-2b")
visualizer("You are an assistant. Make sure you print me") # we should have slidiing on non sliding side by side

visualizer = AttentionMaskVisualizer("google/gemma-3-27b-it")
visualizer("<img>You are an assistant. Make sure you print me") # we should have slidiing on non sliding side by side

image

@HuggingFaceDocBuilderDev
Copy link
Copy Markdown

The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update.

@jmayank23
Copy link
Copy Markdown

Hi, I was trying to visualize the attention mask for Gemma 3 but I get

AttributeError: 'Gemma3ForConditionalGeneration' object has no attribute 'visualize_attention_mask'

For reference, sharing relevant excerpts of the code:

from transformers import AutoProcessor, Gemma3ForConditionalGeneration, AutoTokenizer
from PIL import Image
import json
import torch

model_id = "google/gemma-3-27b-it"

model = Gemma3ForConditionalGeneration.from_pretrained(
    model_id, device_map="auto"
).eval()

processor = AutoProcessor.from_pretrained(model_id)
tokenizer = AutoTokenizer.from_pretrained(model_id)
.
.
.
inputs = processor.apply_chat_template(
        messages,
        add_generation_prompt=True,
        tokenize=True,
        return_dict=True,
        return_tensors="pt"
    ).to(model.device, dtype=torch.bfloat16)

model.visualize_attention_mask(tokenizer, inputs)

@ArthurZucker
Copy link
Copy Markdown
Collaborator Author

Hey ! Will work a bit to make it more easy to use! THanks 🤗

@ArthurZucker ArthurZucker marked this pull request as ready for review March 18, 2025 15:49
@github-actions github-actions Bot requested a review from Rocketknight1 March 18, 2025 15:50
@ArthurZucker ArthurZucker requested a review from molbap March 18, 2025 15:51
@molbap
Copy link
Copy Markdown
Contributor

molbap commented Mar 18, 2025

Doing a first review, so happy about this

Copy link
Copy Markdown
Contributor

@molbap molbap left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Amazing

Comment thread src/transformers/utils/attention_visualizer.py Outdated
Comment thread src/transformers/utils/attention_visualizer.py
Comment thread src/transformers/utils/attention_visualizer.py
Comment thread src/transformers/utils/attention_visualizer.py Outdated
Comment thread src/transformers/utils/attention_visualizer.py
@ArthurZucker ArthurZucker merged commit fef8b7f into main Mar 19, 2025
19 of 24 checks passed
@ArthurZucker ArthurZucker deleted the attention-utilities branch March 19, 2025 12:58
zucchini-nlp pushed a commit to zucchini-nlp/transformers that referenced this pull request May 14, 2025
* add utils  fiel

* style

* nits

* nits

* update

* updaets

* update

* fix init issues

* big updates

* nits

* nits?

* small updates

* nites

* there were still some models left

* style

* fixes

* updates

* nits _ fixes

* push changes

* update

* update

* update

* Apply suggestions from code review

Co-authored-by: Pablo Montalvo <39954772+molbap@users.noreply.github.com>

* style

* styling and return a string for testing

* small updates

* always biderectional for now

* update

---------

Co-authored-by: Pablo Montalvo <39954772+molbap@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants