与我所需的规模相比,以下是我要执行的操作的一个示例:
>>> a
array([[ 21, 22, 23, 24, 25, 26, 27],
[ 56, 57, 58, 59, 60, 61, 62],
[ 14, 15, 16, 17, 18, 19, 20],
[ 7, 8, 9, 1010, 11, 12, 13],
[ 42, 43, 44, 45, 46, 47, 48],
[ 63, 64, 65, 66, 67, 68, 69],
[ 0, 1, 2, 3, 4, 5, 6],
[ 49, 50, 51, 52, 53, 54, 55],
[ 28, 29, 30, 31, 32, 33, 34],
[ 35, 36, 37, 38, 39, 40, 41]])
>>> indices = a.argmax(axis=0)
>>> indices
array([5, 5, 5, 3, 5, 5, 5])
>>> b = np.zeros(a.shape)
>>> b[indices] = 1.0
>>> b # below is the actual output, not what I want
array([[ 0., 0., 0., 0., 0., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0.],
[ 1., 1., 1., 1., 1., 1., 1.],
[ 0., 0., 0., 0., 0., 0., 0.],
[ 1., 1., 1., 1., 1., 1., 1.],
[ 0., 0., 0., 0., 0., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0.]])
但是我真正需要的是:
>>> b
array([[ 0., 0., 0., 0., 0., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0.],
[ 0., 0., 0., 1., 0., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0.],
[ 1., 1., 1., 0., 1., 1., 1.],
[ 0., 0., 0., 0., 0., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0.]])
Numpy索引会变得非常复杂,很难用语言表达以上内容,因此希望有人能够理解我在寻找什么.从本质上讲,只要列的最大值为1,其他位置为零即可设置为1.我将如何去做呢?
解决方法:
从docs开始:
If the number of objects in the selection tuple is less than N , then
:
is assumed for any subsequent dimensions.
在选择中只有一个数组,因此您从索引中获得的每一行都等于1.要克服这一点,您需要列索引.我想这可以解决问题:
b[indices, np.arange(a.shape[1])] = 1.0