gpt4 book ai didi

python - 对于给定条件,获取 2D 张量 A 中的值的索引,使用这些索引来索引 3D 张量 B

转载 作者:行者123 更新时间:2023-12-01 07:12:29 27 4
gpt4 key购买 nike

对于给定的二维张量,我想检索值为 1 的所有索引。我希望能够简单地使用 torch.nonzero(a == 1).squeeze(),它将返回张量([1, 3, 2])。但是,torch.nonzero(a == 1) 返回一个 2D 张量(没关系),每行有两个值(这不是我所期望的)。然后,返回的索引应该用于索引 3D 张量的第二个维度(索引 1),再次返回 2D 张量。

import torch

a = torch.Tensor([[12, 1, 0, 0],
[4, 9, 21, 1],
[10, 2, 1, 0]])

b = torch.rand(3, 4, 8)

print('a_size', a.size())
# a_size torch.Size([3, 4])
print('b_size', b.size())
# b_size torch.Size([3, 4, 8])

idxs = torch.nonzero(a == 1)
print('idxs_size', idxs.size())
# idxs_size torch.Size([3, 2])

print(b.gather(1, idxs))

显然,这不起作用,会导致 RunTimeError:

RuntimeError: invalid argument 4: Index tensor must have same dimensions as input tensor at C:\w\1\s\windows\pytorch\aten\src\TH/generic/THTensorEvenMoreMath.cpp:453

看来idxs并不是我所期望的那样,也不能按照我想象的方式使用它。 idxs

tensor([[0, 1],
[1, 3],
[2, 2]])

但是通读documentation我不明白为什么我还要返回结果张量中的行索引。现在,我知道我可以通过切片 idxs[:, 1] 来获得正确的 idxs,但我仍然无法使用这些值作为 3D 张量的索引,因为会引发与之前相同的错误。是否可以使用索引的一维张量来选择给定维度上的项目?

最佳答案

您可以简单地对它们进行切片并将其作为索引传递,如下所示:

In [193]: idxs = torch.nonzero(a == 1)     
In [194]: c = b[idxs[:, 0], idxs[:, 1]]

In [195]: c
Out[195]:
tensor([[0.3411, 0.3944, 0.8108, 0.3986, 0.3917, 0.1176, 0.6252, 0.4885],
[0.5698, 0.3140, 0.6525, 0.7724, 0.3751, 0.3376, 0.5425, 0.1062],
[0.7780, 0.4572, 0.5645, 0.5759, 0.5957, 0.2750, 0.6429, 0.1029]])
<小时/>

或者,一个更简单且我更喜欢的方法是只使用 torch.where()然后直接索引到张量b,如下所示:

In [196]: b[torch.where(a == 1)]  
Out[196]:
tensor([[0.3411, 0.3944, 0.8108, 0.3986, 0.3917, 0.1176, 0.6252, 0.4885],
[0.5698, 0.3140, 0.6525, 0.7724, 0.3751, 0.3376, 0.5425, 0.1062],
[0.7780, 0.4572, 0.5645, 0.5759, 0.5957, 0.2750, 0.6429, 0.1029]])

关于使用 torch.where() 的上述方法的更多解释:它基于 advanced indexing 的概念工作。 。也就是说,当我们使用序列对象的元组(例如张量的元组、列表的元组、元组的元组等)对张量进行索引时。

# some input tensor
In [207]: a
Out[207]:
tensor([[12., 1., 0., 0.],
[ 4., 9., 21., 1.],
[10., 2., 1., 0.]])

对于基本切片,我们需要一个整数索引元组:

   In [212]: a[(1, 2)] 
Out[212]: tensor(21.)

要使用高级索引实现相同的目的,我们需要一个序列对象的元组:

# adv. indexing using a tuple of lists
In [213]: a[([1,], [2,])]
Out[213]: tensor([21.])

# adv. indexing using a tuple of tuples
In [215]: a[((1,), (2,))]
Out[215]: tensor([21.])

# adv. indexing using a tuple of tensors
In [214]: a[(torch.tensor([1,]), torch.tensor([2,]))]
Out[214]: tensor([21.])

返回的张量的维度始终比输入张量的维度小一维。

关于python - 对于给定条件,获取 2D 张量 A 中的值的索引,使用这些索引来索引 3D 张量 B,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58136592/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com