作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个任意形状的 numpy 数组,例如:
a = array([[[ 1, 2],
[ 3, 4],
[ 8, 6]],
[[ 7, 8],
[ 9, 8],
[ 3, 12]]])
a.shape = (2, 3, 2)
最后一个轴上的 argmax 的结果:
np.argmax(a, axis=-1) = array([[1, 1, 0],
[1, 0, 1]])
我想得到最大值:
np.max(a, axis=-1) = array([[ 2, 4, 8],
[ 8, 9, 12]])
但无需重新计算所有内容。我试过:
a[np.arange(len(a)), np.argmax(a, axis=-1)]
但是得到了:
IndexError: shape mismatch: indexing arrays could not be broadcast together with shapes (2,) (2,3)
怎么做?二维的类似问题:numpy 2d array max/argmax
最佳答案
您可以使用 advanced indexing
-
In [17]: a
Out[17]:
array([[[ 1, 2],
[ 3, 4],
[ 8, 6]],
[[ 7, 8],
[ 9, 8],
[ 3, 12]]])
In [18]: idx = a.argmax(axis=-1)
In [19]: m,n = a.shape[:2]
In [20]: a[np.arange(m)[:,None],np.arange(n),idx]
Out[20]:
array([[ 2, 4, 8],
[ 8, 9, 12]])
对于任意维数的通用 ndarray 情况,如 comments by @hpaulj
中所述, 我们可以使用 np.ix_
, 像这样 -
shp = np.array(a.shape)
dim_idx = list(np.ix_(*[np.arange(i) for i in shp[:-1]]))
dim_idx.append(idx)
out = a[dim_idx]
关于python - numpy:如何从 argmax 结果中获得最大值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40357335/
我是一名优秀的程序员,十分优秀!