reshape -1

numpy reshape可以写一个unknown dimension,写为-1,系统会自动计算该dimension的length,如:
a = np.arange(24)
b = a.reshape(6,-1,2)
b.shape = (6,2,2)


留言

熱門文章