I have a sequence of 2D images (how it has propagated through each time step) depicting a single simulation. Let's say for example I have 1000 sets of simulations, each containing 10-time frame images. This is not a supervised learning problem as there are no class labels. The model has to learn how to simulation progresses with time. (I have a separate folder for each simulation, each containing 10-time frame images).
Can anyone help me with creating a suitable 4D tensor/ .npy for the same in the form [no_frames_in_each_sample, total_samples, image_height, image_width) (in our example, that would be [10, 1000, 64, 64].
Later I can use this to split it into training and validation.
Any help would be much appreciated! Thank you.