我有一个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))