neural_foo t1_iuxgk7c wrote on November 3, 2022 at 6:49 PM Reply to [D] Graph neural networks by No_Captain_856 You may find this introduction by code useful: https://pytorch-geometric.readthedocs.io/en/latest/notes/introduction.html#data-handling-of-graphs In this example, the connection information is specified as an adjacency list instead of an adjacency matrix. Permalink 4
neural_foo t1_iux35iy wrote on November 3, 2022 at 5:24 PM Reply to [P] How to reverse engineer a neural network to get inputs from the outputs by ojiber This paper can be a good place to start Towards Reverse-Engineering Black-Box Neural Networks https://arxiv.org/abs/1711.01768 Permalink 3
neural_foo t1_iuxgk7c wrote
Reply to [D] Graph neural networks by No_Captain_856
You may find this introduction by code useful: https://pytorch-geometric.readthedocs.io/en/latest/notes/introduction.html#data-handling-of-graphs
In this example, the connection information is specified as an adjacency list instead of an adjacency matrix.