如何组合numpy 3d数组形状(326,25,16)和1d数组形状(326,) CNN输入数组形状(326,25,16),数组形状(326,)为标签。
答案 0 :(得分:0)
我最好的客人关于你想要做的是复制和调整阵列的大小。
# same dimensions as your array
a=np.random.randn(326)
# then you can tile (repeat) your array to have the same shape
# of your other array to do element-wise operations or something else
b=np.tile(a.reshape(-1,1,1),(1,25,16))
变量b
的形状现在为(326, 25, 16)
。