Implementing an CLSTM but facing Dimension Error Problem
问题 i am implementing a CLSTM based on This problem but facing error of dimensionality. Data set: I am currently working on one video, which has 4500 images of size (28,28) . The data set is in vectorized form so i get (4500,780) . I split the images using Timeseriessplit and reshape the images with x_train=x_train.reshape(-1, 28, 28, 1) x_test=x_test.reshape(-1, 28, 28, 1) My model is as follows model = models.Sequential() model.add(layers.ConvLSTM2D( filters=40, kernel_size=(3, 3), input_shape=