You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And therefore there is no example of visualisation for GNNExplainer.
The text was updated successfully, but these errors were encountered:
scottdd204
changed the title
Traceback (most recent call last): File "/home/scott/DIGGNNEXPLAINER.py", line 83, in <module> edge_mask=gnnexplainer_related_preds[1][prediction], NameError: name 'prediction' is not defined
edge_mask=gnnexplainer_related_preds[1][prediction], NameError: name 'prediction' is not defined
Feb 9, 2024
Hi, the prediction results is missed, and should add codes node_idx = node_indices[20], logits = model(data.x, data.edge_index) and prediction = logits[node_idx].argmax(-1).item() .
See tutorials/KDD2022/xgraph_code_tutorial.ipynb
gnnexplainer_related_preds =
gnnexplainer(data.x, data.edge_index, sparsity=sparsity, num_classes=num_classes, node_idx=node_idx)
ax, G = gnnexplainer.visualize_graph(node_idx=node_idx,
edge_index=data.edge_index,
edge_mask=gnnexplainer_related_preds[1][prediction],
y=data.y)
And therefore there is no example of visualisation for GNNExplainer.
The text was updated successfully, but these errors were encountered: