GNN Explainability
Interpreting GNN models is crucial for many use cases.
PyG (2.3 and beyond) provides the torch_geometric.explain package for first-class GNN explainability support that currently includes
a flexible interface to generate a variety of explanations via the
Explainerclass,several underlying explanation algorithms including, e.g.,
GNNExplainer,PGExplainerandCaptumExplainer,support to visualize explanations via the
Explanationor theHeteroExplanationclass,and metrics to evaluate explanations via the
metricpackage.
Warning
The explanation APIs discussed here may change in the future as we continuously work to improve their ease-of-use and generalizability.
Explainer Interface
The torch_geometric.explain.Explainer class is designed to handle all explainability parameters (see the ExplainerConfig class for more details):
which algorithm from the
torch_geometric.explain.algorithmmodule to use (e.g.,GNNExplainer)the type of explanation to compute, i.e.
explanation_type="phenomenon"to explain the underlying phenomenon of a dataset, andexplanation_type="model"to explain the prediction of a GNN model (see the “GraphFramEx: Towards Systematic Evaluation of Explainability Methods for Graph Neural Networks” paper for more details).the different type of masks for node and edges (e.g.,
mask="object"ormask="attributes")any postprocessing of the masks (e.g.,
threshold_type="topk"orthreshold_type="hard")
This class allows the user to easily compare different explainability methods and to easily switch between different types of masks, while making sure the high-level framework stays the same.
The Explainer generates an Explanation or HeteroExplanation object which contains the final information about which nodes, edges and features are crucial to explain a GNN model.
Note
You can read more about the torch_geometric.explain package in this blog post.
Examples
In what follows, we discuss a few use-cases with corresponding code examples.
Explaining node classification on a homogeneous graph
Assume we have a GNN model that does node classification on a homogeneous graph.
We can use the torch_geometric.explain.algorithm.GNNExplainer algorithm to generate an Explanation.
We configure the Explainer to use both a node_mask_type and an edge_mask_type such that the final Explanation object contains (1) a node_mask (indicating which nodes and features are crucial for prediction), and (2) an edge_mask (indicating which edges are crucial for prediction).
from torch_geometric.data import Data
from torch_geometric.explain import Explainer, GNNExplainer
data = Data(...) # A homogeneous graph data object.
explainer = Explainer(
model=model,
algorithm=GNNExplainer(epochs=200),
explanation_type='model',
node_mask_type='attributes',
edge_mask_type='object',
model_config=dict(
mode='multiclass_classification',
task_level='node',
return_type='log_probs', # Model returns log probabilities.
),
)
# Generate explanation for the node at index `10`:
explanation = explainer(data.x, data.edge_index, index=10)
print(explanation.edge_mask)
print(explanation.node_mask)
Finally, we can visualize both feature importance and the crucial subgraph of the explanation:
explanation.visualize_feature_importance(top_k=10)
explanation.visualize_graph()
To evaluate the explanation from the GNNExplainer, we can utilize the torch_geometric.explain.metric module.
For example, to compute the unfaithfulness() of an explanation, run:
from torch_geometric.explain import unfaithfulness
metric = unfaithfulness(explainer, explanation)
print(metric)
Explaining node classification on a heterogeneous graph
Assume we have a heterogeneous GNN model that does node classification on a heterogeneous graph.
We can use the IntegratedGradient attribution method from Captum via the torch_geometric.explain.algorithm.CaptumExplainer algorithm to generate a HeteroExplanation.
Note
CaptumExplainer is a wrapper around the Captum library with support for most of attribution methods to explain any homogeneous or heterogeneous PyG model.
We configure the Explainer to use both a node_mask_type and an edge_mask_type such that the final HeteroExplanation object contains (1) a node_mask for each node type (indicating which nodes and features for each node type are crucial for prediction), and (2) an edge_mask for each edge type (indicating which edges for each edge type are crucial for prediction).
from torch_geometric.data import HeteroData
from torch_geometric.explain import Explainer, CaptumExplainer
hetero_data = HeteroData(...) # A heterogeneous graph data object.
explainer = Explainer(
model, # It is assumed that model outputs a single tensor.
algorithm=CaptumExplainer('IntegratedGradients'),
explanation_type='model',
node_mask_type='attributes',
edge_mask_type='object',
model_config = dict(
mode='multiclass_classification',
task_level=task_level,
return_type='probs', # Model returns probabilities.
),
)
# Generate batch-wise heterogeneous explanations for
# the nodes at index `1` and `3`:
hetero_explanation = explainer(
hetero_data.x_dict,
hetero_data.edge_index_dict,
index=torch.tensor([1, 3]),
)
print(hetero_explanation.edge_mask_dict)
print(hetero_explanation.node_mask_dict)
Explaining graph regression on a homogeneous graph
Assume we have a GNN model that does graph regression on a homogeneous graph.
We can use the torch_geometric.explain.algorithm.PGExplainer algorithm to generate an Explanation.
We configure the Explainer to use an edge_mask_type such that the final Explanation object contains an edge_mask (indicating which edges are crucial for prediction).
Importantly, passing a node_mask_type to the Explainer will throw an error since PGExplainer cannot explain the importance of nodes:
from torch_geometric.data import Data
from torch_geometric.explain import Explainer, PGExplainer
dataset = ...
loader = DataLoader(dataset, batch_size=1, shuffle=True)
explainer = Explainer(
model=model,
algorithm=PGExplainer(epochs=30, lr=0.003),
explanation_type='phenomenon',
edge_mask_type='object',
model_config=dict(
mode='regression',
task_level='graph',
return_type='raw',
),
# Include only the top 10 most important edges:
threshold_config=dict(threshold_type='topk', value=10),
)
# PGExplainer needs to be trained separately since it is a parametric
# explainer i.e it uses a neural network to generate explanations:
for epoch in range(30):
for batch in loader:
loss = explainer.algorithm.train(
epoch, model, batch.x, batch.edge_index, target=batch.target)
# Generate the explanation for a particular graph:
explanation = explainer(dataset[0].x, dataset[0].edge_index)
print(explanation.edge_mask)
Since this feature is still undergoing heavy development, please feel free to reach out to the PyG core team either on GitHub or Slack if you have any questions, comments or concerns.