Replies: 4 comments 5 replies
-
This should be possible to achieve via GNNs on this grid graph will then perform a similar operation compared to a classical CNN (but should run way slower). |
Beta Was this translation helpful? Give feedback.
-
@rusty1s : Thank you for sharing the insight of the image as a graph. I also implemented using networkx and visualize as follows: I would like to raise another concern that Message Passing on a large image (let us say 1024 x1024) is large and may not be fit on to the GPU. Is there any forward pass and backward pass operating in chunk fashion as the aggregated function is embarrassingly independent per node? |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
You can see the ViG code. It's good project! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I have an image data set with an image size of 256*256 pixels for semantic segmentation tasks. I want to convert an image into a graph to generate a graph data set, where each pixel is used as a node, the pixel value is used as a feature of the node, and the edge between adjacent pixels is used as an edge (superpixels are not used because of semantic segmentation). How do I use pyg to achieve it? How about using graph neural network to achieve semantic segmentation effect?
Beta Was this translation helpful? Give feedback.
All reactions