question about torch_scatter #4127
Unanswered
Byun-jinyoung
asked this question in
Q&A
Replies: 1 comment
-
I believe your assert data.edge_index.min() >= 0 and data.edge_index.max() < data.num_nodes |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Dear pyg users,
I've generated graph by using pytorch geometric
Data
for regression problem.Below is an example of the shape of data
Data(x=[6900, 40], edge_index=[2, 24932], edge_attr=[24932], y=[1], pos=[6900, 3])
However, when I tried to train my model, I got the error. Thus I input only one data into the model so that I got the error as below.
I think that this problem comes from the
torch_scatter
.Could you tell me what I'm missing? How can I solve this problem??
Best regards :)
Beta Was this translation helpful? Give feedback.
All reactions