Replies: 1 comment 4 replies
-
To me, this looks like a node classification problem on a heterogeneous graph (you have a author<->paper graph and a paper<->paper graph). In fact, this is quite similar to the |
Beta Was this translation helpful? Give feedback.
4 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.
-
Hi! I'm very new to pytorch geometric, but my understanding would be that the most common applications are graph/node classifications while I'd be very interested in graph signal classification.
To clarify, an example could be a feature matrix x (n,m) where for each author (n authors) we have indicators if they participated in a paper (m papers). Then we know the citation network for all papers (m by m adjacency matrix or (2,m) edge list. And we want to predict departments for the authors (so y is (1,n)).
Of course, I could also reformulate the problem as a graph classification, but it does not look very memory efficient if every author uses exactly the same graph and this graph is very big (and possibly weighted).
I couldn't really find a similar setting in any of the examples. Please let me know if I missed something or there is an easy way to change one of the common examples to make it work in this setting.
Beta Was this translation helpful? Give feedback.
All reactions