I am trying to use LSTM for time series predictions on multivariate data. I have 50000 samples with 15 dimensions. I want to use look back of 10. What will be the shape of input to LSTM layer. Will it be
(samples,look back,dimension) = (50000,10,15)
or
(samples,dimension, look back) = (50000,15,10)
I am using Keras.