Adjacency Matrix

 
  • NxN matrix where (m,n) is set if there is an edge between the nodes m and n or 0 otherwise
  • For undirected graphs, this is always symmetric
  • For large sparse ones, it can be a list of connections to save memory
  • The node has an associated node embedding x(n) of length D. These embeddings are concatenated and stored in the D×N node data matrix X. Similarly, the edge has an associated edge embedding e(e) of length DE . These edge embeddings are collected into the matrix E.

Properties of Adjacency matrix