I have a numpy array: all_data=(10000,3072) where each cell in array is data of a 32*32*3 image. When the data in the cell is formatted as:
np.transpose(np.reshape(image_data,(3, 32,32)), (1,2,0))
the real image is displayed (using plt.imshow or any such libraries) . Now i want to transform all_data such that the shape of all_data is (10000,32,32,3) How can i do this?
image_data? Is it the same asall_dataor is it something else?