I am confused how exactly to encode a sequence of data as an input to an LSTM RNN.
In a vanilla DNN, there is an input for every label. What is the "input" in an RNN? Doesnt it have to be a set (or sequence) of data, in order to train sequential events associated with a label?
Im confused how to encode sequential information, because it seems that there should be more than a single input associated with a given label.
model.add(LSTM(128, input_shape=(10, 16))
<- missing a closing parenthesis – Hogle