How can I get node embedding from the basic GCN encoder? #6542
-
I think that this question is duplicated with this question (#4561), but I need more detail answer for the problem. First, I prepared the PyG Data from networkx graph and got the dataset as below:
The original networkx data was made from two csv files, one is adjacency matrix (row: node, column: node) and another is feature matrix (row: node, column: 1,648 of features). Then, I ran the basic GCN using
Because I only want the node embeddings with 16 dimensions, I did not add other activation functions. By using
As in #4561, I tried to add edge attributes, but I don't know where should I fix. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Do you have a minimal example to reproduce? What |
Beta Was this translation helpful? Give feedback.
Do you have a minimal example to reproduce? What
dtype
doesedge_index
,edge_weight
andx
have? What doesdata.validate()
report?