Skip to content

Pyplot for token attributions (continued from PR #11) #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions src/diffusers_interpret/token_attributions.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
from typing import Tuple, List, Any, Iterable, Union
import matplotlib.pyplot as plt


class TokenAttributions(list):
def __init__(self, token_attributions: List[Tuple[str, float]]) -> None:
super().__init__(token_attributions)
self.token_attributions = token_attributions

def __getitem__(self, item: Union[str, int]) -> Any:
return getattr(self, item) if isinstance(item, str) else self.token_attributions[item]

def __setitem__(self, key: Union[str, int], value: Any) -> None:
setattr(self, key, value)

def plot(self, plot_type: str = 'barh', title: str = 'Token Attributions', **plot_kwargs) -> None:
'''
Plot the token attributions to have a comparative view.
Available plot types include bar chart, horizontal bar chart, and pie chart.
'''
tokens, attributions = list(zip(*self.token_attributions))

# get arguments from plot_kwargs
xlabel = plot_kwargs.get('xlabel')
ylabel = plot_kwargs.get('ylabel')
title = plot_kwargs.get('title') or title

if plot_type == 'bar':
# Bar chart
plt.bar(tokens, attributions)
plt.xlabel(xlabel or 'tokens')
plt.ylabel(ylabel or 'attribution value')

elif plot_type == 'barh':
# Horizontal bar chart
plt.barh(tokens, attributions)
plt.xlabel(xlabel or 'attribution value')
plt.ylabel(ylabel or 'tokens')
plt.gca().invert_yaxis() # to have the order of tokens from top to bottom

elif plot_type == 'pie':
# Pie chart
plot_kwargs = {
'startangle': 90, 'counterclock': False, 'labels': tokens,
'autopct': '%1.1f%%', 'pctdistance': 0.8,
**plot_kwargs
}
plt.pie(attributions, **plot_kwargs)
if xlabel:
plt.xlabel(xlabel)
if ylabel:
plt.ylabel(ylabel)

else:
raise NotImplementedError(
f"`plot_type={plot_type}` is not implemented. Choose one of: ['bar', 'barh', 'pie']"
)

# set title
plt.title(title)