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
wrapper.py line 53中的preprocess_item()中 item.in_degree = adj.long().sum(dim=1).view(-1) 如果是为了求入度, 是否应该是dim=0? (不过本例中都是无向图, 所以没有出错.)
item.in_degree = adj.long().sum(dim=1).view(-1)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
wrapper.py line 53中的preprocess_item()中
item.in_degree = adj.long().sum(dim=1).view(-1)
如果是为了求入度, 是否应该是dim=0? (不过本例中都是无向图, 所以没有出错.)
The text was updated successfully, but these errors were encountered: