Replies: 1 comment 3 replies
-
Thanks for the discussion. Can you clarify what there is to do on our end? Do you think our implementation is wrong? |
Beta Was this translation helpful? Give feedback.
3 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.
-
If I use:
and
get_dataset
withuse_lcc=True
:https://github.com/gasteigerjo/gdc/blob/master/data.py
for citeseer, I get the same result. However, I get a different result for Wisconsin. PyG lcc gives back the full dataset as Wisconsin is not disconnected. However, the
get_dataset
gives me a graph with184
nodes.Citeseer is an undirected graph and Wisconsin is a directed graph. I do not know why I am getting different results. This is how they implement lcc:
It looks like PyG is using
sp.csgraph.connected_components(adj)
to get the connected component.I am using PyG 2.1.0, so I didn't use
connection='strong'
. If I useconnection='strong'
then I get a graph with14
nodes.Beta Was this translation helpful? Give feedback.
All reactions