我有一個列表說,temp_list具有以下屬性:ValueError異常:無法從形狀(224,224,3)廣播輸入數組形狀(224224)
len(temp_list) = 9260
temp_list[0].shape = (224,224,3)
現在,當我轉換成numpy的陣列,
x = np.array(temp_list)
我收到錯誤:
ValueError: could not broadcast input array from shape (224,224,3) into shape (224,224)
有人可以幫助我在這裏?
我想我們需要使用np.flatten() – Aditya
flatten會扭曲數組的形狀。 – neel
你能顯示你的輸入樣本嗎? – Aditya