Replies: 1 comment 11 replies
-
One solution would be to manually shrink your graph to only show important edges and nodes, e.g. via
|
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I built a model to classify the whole graph and I tried to use
explainer.explain_graph
to get those parts that are important.Then I got two returns
node_feat_mask
、edge_mask
.Then I use
explainer.visualize_subgraph
to visualize the result but I see that the output is still the whole graph, not the subgraph.Is there a way to show only the important subgraphs instead of the whole graph? Because the number of nodes and edges of the whole graph is too large, which makes it impossible to observe.
Then there is one more question, each time I run the result, the values of
node_feat_mask
andedge_mask
are different, is this normal?Thanks.
Beta Was this translation helpful? Give feedback.
All reactions