假设我们有一个形状为 $n\times d\times h\times w\times p\times p$ 的张量,我们想要将形状为 $p\time p$ 的内网矩阵连接起来,这样我们就制作了一个形状为 $ 的矩阵n\times d\times ph\times pw$。我该怎么做?
array([[[[[[ 0, 1, 2],
[ 3, 4, 5],
[ 6, 7, 8]],
[[ 9, 10, 11],
[12, 13, 14],
[15, 16, 17]]],
[[[18, 19, 20],
[21, 22, 23],
[24, 25, 26]],
[[27, 28, 29],
[30, 31, 32],
[33, 34, 35]]]]]])
连接后
array([[[[0, 1, 2, 9, 10, 11],
[3, 4, 5, 12, 13, 14],
[6, 7, 8, 15, 16, 17],
[18, 19, 20, 27, 28, 29],
[21, 22, 23, 30, 31, 32],
[24, 25, 26, 33, 34, 35]]]])
我使用重塑做了很多实验,但没有成功。我的实验之一
a.reshape(n, d, p*h, p*w)
我可以使用 for 循环来做到这一点,但我认为没有这个也是可能的。请帮我。使用for循环的代码
p = 3
arr = np.arange(1*1*2*2*p*p).reshape(1, 1, 2, 2, p, p)
answer = np.zeros(shape=(1, 1, 2*p, 2*p))
for (n, d, h, w) in np.ndindex(*arr.shape[:4]):
answer[n, d, h:h+p, w:w+p] = arr[n, d, h, w]
reshape
无法对数组的元素重新排序。我从 [0,1,...35] 开始,并reshape
保留:我们必须以某种方式重新排序元素,将 [9,10,11] 块放在 [0,1,2] 附近。
transpose
就是这样一种工具:要通过分配给“空白”来做同样的事情,我们需要类似的东西:
同一块连接的串联版本: