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
Dear the authors, here are some concerns I have on your implementation. Thanks for your consideration!
In the batch_utils.py file, you write pre_indices = indices
but this may not be a copy command, the right one is pre_indices = indices.copy()
This error bug makes your get_indice_graph() function can only retrieve the first-hop neighborhood. And this leads to the error in Table 2 of your paper, e.g., you gave #Node of Cora being 644 there. This is only the number of the first-hop neighbors.
Is there anything that I missed?
Look forward to your reply!
The text was updated successfully, but these errors were encountered:
Dear the authors, here are some concerns I have on your implementation. Thanks for your consideration!
In the batch_utils.py file, you write
pre_indices = indices
but this may not be a copy command, the right one is
pre_indices = indices.copy()
This error bug makes your get_indice_graph() function can only retrieve the first-hop neighborhood. And this leads to the error in Table 2 of your paper, e.g., you gave #Node of Cora being 644 there. This is only the number of the first-hop neighbors.
Is there anything that I missed?
Look forward to your reply!
The text was updated successfully, but these errors were encountered: