Replies: 1 comment
-
Since you are working on mesh data, you can directly use the You also need to install |
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.
-
I'm trying to use CuGraphSAGEConv Layer. Here it says that I need CSC representation of graph, and for that use
CuGraphModule.to_csc()
method to convert an edge_index representation to the desired format. I'm working on 3D mesh data. Which contain positions and faces information. How to convert this information or the edge index information to CSC?I came across one method called
to_torch_csc_tensor
. Does this outputs same that is needed as input to CuGraphSAGEConv layer? If not then what is correct way to get data in CSC format as per need of CuGraphSAGEConv.Also when I try to initialize CuGraphSAGEConv as
L = CuGraphSAGEConv( in_channels = 3, out_channels = 16 )
it gives error asModuleNotFoundError: 'CuGraphSAGEConv' requires 'pylibcugraphops'
.I'm not sure what does this error mean. Any help would be great regarding this issues. Thanks
Beta Was this translation helpful? Give feedback.
All reactions