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
The graph operation is not used in this code version, thus the adj matrix generation code is incorrect. I will soon fix this issue in few days, and the correct adj matrix should not be an identity matrix.
In the correct version, the adj matix is ncnc dimensional, and outputs is ncC dimensional, where C is the feature channel.
Thus, their dims are matched for torch.mm(adj,output).
An interesting work, but I have some doubts about the graph conv.
The adj obtained at
DVBE/main.py
Line 133 in dd87981
and, the adj will torch.mm with the FC features at
DVBE/models/operations.py
Line 211 in dd87981
so, what's the meaning of adj, and how do their dims match?
The text was updated successfully, but these errors were encountered: