I'm loading pre-trained model with shape of ((23094, 71, 768), (23094, 19, 282)).
When i pass my new X values with shape of (29116, 72, 768) it shows Error when checking input: expected lstm_1_input to have shape (71, 768) but got array with shape (72, 768).
This is my model summary: Model: "sequential_1"
Layer (type) Output Shape Param #
lstm_1 (LSTM) (None, 71, 256) 1049600
lstm_2 (LSTM) (None, 71, 64) 82176
lstm_3 (LSTM) (None, 32) 12416
dense_1 (Dense) (None, 5358) 176814
reshape_1 (Reshape) (None, 19, 282) 0
activation_1 (Activation) (None, 19, 282) 0
Total params: 1,321,006 Trainable params: 1,321,006 Non-trainable params: 0