将numpy 2D数组转换为numpy数组的1D数组

时间:2018-02-08 01:12:28

标签: python numpy reshape

我有一个numpy数组标签为

 l = []
    for i in range(3):
        l.append(np.arange(3))
    label = np.array(l, dtype = np.object)
    print(label)
    print(label.shape)
    print(label[0].shape)

[[0 1 2]
[0 1 2]
[0 1 2]]
(3, 3)
(3,)

我想将标签转换为数组的一维数组,以便label.shape给我(3,)和标签[0] .shape也给我(3,)

基本上我想将label作为数组(数组(0,1,2),数组(0,1,2),数组(0,1,2))

0 个答案:

没有答案