Firstly I am new to Keras. I have the following case:
- Time series data with 15 feature held in pandas dataframe
- Time series data is hourly. So I want to predict next 16 hourly time series data. I want to give input (16 time series data) , then predict the next 16 hours. I'm thinking of modelling it as many to many, but am not sure.
- How many new columns are created in dataframe. , What should the LSTM's input configuration be like, output_shape, etc...
I have searched for it in the following link, but I can't understand the theory and combine multi step and Multi variable
https://machinelearningmastery.com/multivariate-time-series-forecasting-lstms-keras/