-
Thank you so much for the wonderful library. Unfortunately, I am struggling a bit with the basics. I wanted to understand how to correctly use Sparse Tensors and interchanging between different formats.
I did the latter part to see if I can switch between the two without many issues. However, I keep getting the error:-
I am not exactly sure how to proceed with the dataset creation and their interchange. Any help would be highly appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@rusty1s , do you think its useful to add a |
Beta Was this translation helpful? Give feedback.
ToSparseTensor
has an argument calledremove_edge_index
. Set it to false while initializing it. When its true the function setsdata.edge_index
to None.@rusty1s , do you think its useful to add a
remove_edge_index
argument toToDense
.