Viewing a single comment thread. View all comments

new_name_who_dis_ t1_iushhel wrote

Yes. Idk what libraries are popular now but I've used Pytorch Geometric, and it takes as input V which is NxF where N is number of nodes in the graph and F features of the nodes. And E which is 2xnum_edges, where each 2d element is a directed edge between the index of node in V to another index of node in V. E is basically the sparse representation of the adjacency matrix.

18

JoPeGame t1_iut00to wrote

I like Deep Graph Lib for GNN. Documentation is good and their Github is full of examples

11