我有两个张量,张量 a 和张量 b。
我想获取张量 b 中值的所有索引。
例如。
a = torch.Tensor([1,2,2,3,4,4,4,5])
b = torch.Tensor([1,2,4])
1, 2, 4我想要张量 a的索引。我可以通过以下代码来做到这一点。
a = torch.Tensor([1,2,2,3,4,4,4,5])
b = torch.Tensor([1,2,4])
mask = torch.zeros(a.shape).type(torch.bool)
print(mask)
for e in b:
mask = mask + (a == e)
print(mask)
如果没有 ,我该怎么做for?
繁花不似锦
拉风的咖菲猫
相关分类