-
Hello, Set up the dataset
Define a function that returns edge_index and position from KNNGraph
Define nn in EdgeConv
Pass each batch to get knn_data
Feed the data into edge_conv
Just for reference,
|
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Jul 18, 2022
Replies: 1 comment 6 replies
-
You need to reshape your image data to |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
manami-16
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to reshape your image data to
[32*32, 1]
- it now becomes a node feature matrix :)