You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a question about the code line in DeepRobuts.graph.defence.gcn.py:
output = torch.spmm(adj, support)
I track the code and found that in the train_gcn part of prognn.py , the adj is dense matrix after normalization and yet you use torch.spmm to calculate adj and support ? but the adj is dense matrix.
The text was updated successfully, but these errors were encountered:
I have a question about the code line in DeepRobuts.graph.defence.gcn.py:
output = torch.spmm(adj, support)
I track the code and found that in the train_gcn part of prognn.py , the adj is dense matrix after normalization and yet you use torch.spmm to calculate adj and support ? but the adj is dense matrix.
The text was updated successfully, but these errors were encountered: