numpy笔记—np.squeeze用法

import numpy as np

x = np.array([[[0], [1], [2]]])
 
print(x.shape)

d = np.squeeze(x)   # 从数组的形状中删除单维条目,即把shape中为1的维度去掉

print(d.shape)

posted @ 2019-01-15 22:00  douzujun  阅读(8165)  评论(0编辑  收藏  举报