-
Hi, I followed the torch_geometric tutorial and am using Bipartite Graph for graph classification.
I'm also using Sparse Tensors for the edges and got it to run if I iterate over the Dataloader for batches of size 1, but if I go for bigger batches than that I get:
This is my Data Object: BipartiteData(edge_index=[6598, 5368, nnz=33358], x_s=[5368, 7], x_t=[6598, 4], y=[19])
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Removing the |
Beta Was this translation helpful? Give feedback.
Removing the
__inc__
call should omit this error. I'm sorry for the confusion, but there is no need to define__inc__
when usingSparseTensor
.