gpt4 book ai didi

python - 在 numpy 中 reshape 时如何保持特定维度不变?

转载 作者:行者123 更新时间:2023-11-30 22:23:59 26 4
gpt4 key购买 nike

我有一个巨大的 (N*20) 矩阵,其中每 5 行都是有效样本,即。每个(5*20)矩阵。我试图将其 reshape 为 (N/5,1,20,5) 矩阵,其中维度 20 保持不变。我可以使用 keep_dim 在tensroflow中做到这一点,但是如何在numpy中实现这一点?

提前致谢。

最佳答案

reshape 形状,然后交换轴:

 arr1 = arr.reshape(N/5,5,1,20)
arr2 = arr1.transpose(0,2,3,1)

例如

In [476]: arr = np.arange(24).reshape(6,4)
In [477]: arr
Out[477]:
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]])
In [478]: arr1 = arr.reshape(2,3,1,4)
In [479]: arr2 = arr1.transpose(0,2,3,1)
In [480]: arr2.shape
Out[480]: (2, 1, 4, 3)
In [482]: arr2
Out[482]:
array([[[[ 0, 4, 8],
[ 1, 5, 9],
[ 2, 6, 10],
[ 3, 7, 11]]],


[[[12, 16, 20],
[13, 17, 21],
[14, 18, 22],
[15, 19, 23]]]])

关于python - 在 numpy 中 reshape 时如何保持特定维度不变?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47918691/

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