gae
gae copied to clipboard
Can N by N adjacency matrix using float?
Hi. I am new to GAE. I have graphs that nodes have distance each other. And the adjacency matrix will be fully-connected and with all 0's diagonal, which is used to denote the distance. So I was wondering was my graph suitable for the GAE? Because I haven't found similiar information in the paper.
Hope for your reply. Thanks.
I can't help much on the question regarding suitability, above, but the gae can definitely run using float weights, provided your networkx graph has float weights.
I use adj = nx.adjacency_matrix(nxgraph) to get the initial adjacency matrix.