Understanding Tensorflow LSTM Input shape
问题 I have a dataset X which consists N = 4000 samples , each sample consists of d = 2 features (continuous values) spanning back t = 10 time steps . I also have the corresponding 'labels' of each sample which are also continuous values, at time step 11. At the moment my dataset is in the shape X: [4000,20], Y: [4000]. I want to train an LSTM using TensorFlow to predict the value of Y (regression), given the 10 previous inputs of d features, but I am having a tough time implementing this in