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 got an issue of running LINKX model for scalable experiments. In particular, in the forward function of LINKX model, it needs to construct a sparse tensor (line 39, models.py), whose dimension is set to (m, self.num_nodes). m is the number of unique nodes in the parsed data batch. However, since the edge indices are not relabeled, there are certainly some node indices exceeding the number of unique nodes (m value here). Is this a bug or I got some wrong here?
Thanks!
The text was updated successfully, but these errors were encountered:
Hello,
I got an issue of running LINKX model for scalable experiments. In particular, in the forward function of LINKX model, it needs to construct a sparse tensor (line 39, models.py), whose dimension is set to (m, self.num_nodes). m is the number of unique nodes in the parsed data batch. However, since the edge indices are not relabeled, there are certainly some node indices exceeding the number of unique nodes (m value here). Is this a bug or I got some wrong here?
Thanks!
The text was updated successfully, but these errors were encountered: