Dimensions not matching in keras LSTM model
问题 I want to use an LSTM neural Network with keras to forecast groups of time series and I am having troubles in making the model match what I want. The dimensions of my data are: input tensor: (data length, number of series to train, time steps to look back) output tensor: (data length, number of series to forecast, time steps to look ahead) Note: I want to keep the dimensions exactly like that, no transposition. A dummy data code that reproduces the problem is: import numpy as np from keras