when I try to build a lstm model using keras. I see lots of models on internet that have a parameters setting like the code as follows:
from keras.models import Sequential
from keras.layers.recurrent import LSTM
model = Sequential()
model.add(LSTM(output_dim=32,
input_shape=(2, 3),
activation='relu',
return_sequences=True))
model.compile(loss='mae', optimizer='adam', metrics=['accuracy'])
but when i refer to the documents in the keras website, I didn't see any parameters named input shape or output dim. why is that? enter image description here