I am implementing an LSTM the shape of my train data is (5237162, 99, 1).
I create the model as follows and I encounter the error.
TypeError: call() got an unexpected keyword argument 'input_shape'
I tried upgrading Keras to the latest version from github. Did not work.
LSTM_model = Sequential()
LSTM_model.add(LSTM(256,input_shape=(final_ip.shape[1],final_ip.shape[2])))
Can someone help me out with this?
input_shapeonLSTM: keras.io/layers/recurrent/#lstm - Caramiriel