Replies: 1 comment 4 replies
-
Not completely. Because it looks like you don't have a graph, as in the rows don't have connections. Why do you want to use pyg Now you could create a graph by adding |
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 there,
I am interested in modeling the following problem but I am not sure how to proceed.
My dataset consists of a number of samples (~10k). Each sample is in turn a table of N combinations (rows) by M features and a 1 label (each table has dimensions [N, M+1]). The idea of the classifier I want to build is to predict a class for each of the rows. The order of the rows in each table is not relevant.
I thought of modeling each sample as a subgraph. Each row in the table is a node with M features. The idea would then be to do node classification over multiple subgraphs. In other words, my dataset would have ~10k subgraphs, each with N nodes and M features. Given a single subgraph, I would like to predict the classes of the nodes or select one particular node.
DataLoader
to construct a large graph where the subgraphs are connected but what if the subgraphs are unconnected, i.e., what if they are sets?pyg
?Many thanks in advance,
Diego.
Beta Was this translation helpful? Give feedback.
All reactions