We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
for generating u_i, u_j in SemiGNN, the code at line 187 in utils.py
for index in range(0, num_of_nodes): u_i.append(pairs[index][0]) u_j.append(pairs[index][1])
the length of num_of_nodes is not the same as the length of pairs. It cann't iterate all pairs.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
for generating u_i, u_j in SemiGNN, the code at line 187 in utils.py
the length of num_of_nodes is not the same as the length of pairs. It cann't iterate all pairs.
The text was updated successfully, but these errors were encountered: