Graph-convolutional
Graph-convolutional copied to clipboard
@kdrivas Hi, Thanks for sharing your great work. As I dive into the details of the code, I seem to find some potential issues or bugs for which I want...
I appreciate your neat Pytorch code, but I think you may have some issues regarding code in graph.py. In the original paper, we are supposed to have three different weights...
Hi, while calculating incoming arcs, in line 86 : idx_in = (d * seq_len) + a + tmp_in[a], the value of tmp_in[a] is always 0. Can you verify this line....
Hi, I hope you could provide the requirements.txt so that your codes can run properly in my environment. Thanks!
What is implemented here is not a graph convolution, I think it's just a mapping with a matrix. And what confuses me most is that each node of the graph...