标签:sha res pre 转换 nump 维度 .sh shape out
x=np.array([[[1],[2]],[[3],[4]]])
x.shape
Out[109]: (2, 2, 1)
x.reshape(2,2)
Out[110]:
array([[1, 2],
[3, 4]])
x
Out[111]:
array([[[1],
[2]],
[[3],
[4]]])
y=x.reshape(2,2)
y
Out[113]:
array([[1, 2],
[3, 4]])
y.reshape(2,2,1)
Out[114]:
array([[[1],
[2]],
[[3],
[4]]])
标签:sha res pre 转换 nump 维度 .sh shape out
原文地址:http://blog.51cto.com/13959448/2316000