expand_dims函数

>>> x = np.array([1,2])
>>> x.shape
(2,)
>>> y = np.expand_dims(x, axis=0)
>>> y
array([[1, 2]])
>>> y.shape
(1, 2)
>>> x = np.array([1,2])
>>> x.shape
(2,)
>>> y = np.expand_dims(x, axis=1) 
>>> y
array([[1],
       [2]])
>>> y.shape
(2, 1)
原文地址:https://www.cnblogs.com/ymjyqsx/p/6486862.html