Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

pytorch - How to perform indexing and slicing for sparse tensor

I'm trying to access elements of the sparse coo tensor.

i = [[0,2]]
v = [np.array([1,2,3,4]),[5,6,7,8]]
a = torch.sparse_coo_tensor(i,v,(4,4))
print(a.to_dense())
tensor([[1, 2, 3, 4],
        [0, 0, 0, 0],
        [5, 6, 7, 8],
        [0, 0, 0, 0]])

But I'm unable to acces neither one element, neither the whole row

print(a[0])
RuntimeError: sparse tensors do not have strides
print(a[0,:])
RuntimeError: sparse tensors do not have strides

How to do it correctly?

question from:https://stackoverflow.com/questions/65845579/how-to-perform-indexing-and-slicing-for-sparse-tensor

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.6k users

...