Is there a guide/tutorial with associated code that shows how to feed to a neural network the data coming from a graph? By graph, I mean a set of edges and vertices.
You need to go through graph embedding literature. A graph embedding is another representation of the graph (still a matrix but less sensitive to node permutations). Technically these are similar to projections (PCA, ...) but with more information about graph structure.
Anyway, read this document : https://arxiv.org/pdf/1705.02801.pdf
published as : Article Graph Embedding Techniques, Applications, and Performance: A Survey
They also provide codes : https://github.com/palash1992/GEM
You need to go through graph embedding literature. A graph embedding is another representation of the graph (still a matrix but less sensitive to node permutations). Technically these are similar to projections (PCA, ...) but with more information about graph structure.
Anyway, read this document : https://arxiv.org/pdf/1705.02801.pdf
published as : Article Graph Embedding Techniques, Applications, and Performance: A Survey
They also provide codes : https://github.com/palash1992/GEM