↧
Answer by Novak for How to get data in proper shape to feed to LSTM layer in...
LSTM accepts two arguments: input_shape and batch_input_shape. The difference is in convention that input_shape does not contain the batch size, while batch_input_shape is the full input shape...
View ArticleHow to get data in proper shape to feed to LSTM layer in keras for sequence...
I have dataframe as following for time series where SETTLEMENTDATE is index. I want to take first row, i.e 2018-11-01 14:30:00 and values of T_1, T_2, T_3, T_4, T_5, T_6 as a sequence and predict...
View Article