I accidentally used np.vstack(x)
instead of np.stack(x, axis=0)
. Is there a way to reshape that resulting array from vstack
into the regular stack(x, axis=0)
?
I have the resulting .npy saved on my computer, so if this is possible you just saved me 6 hours of rerunning my code.
Background:
I have 1501 images of size (250,250) that was incorrectly vstacked. The current array shape of these images + features is (375250, 2048). I would like this array to be (1501, any number). This is why 375250/250 = 1501.
Each array, before stacking, has shape (2048, )
Reshape should be enough, since your intended axis is the first
To illustrate - with a 3d array pretending to be a list of 2 2d arrays: