NLP - Sequence Models for NLP
Given this code snippet, what will be the shape of the output from the LSTM layer?
model = Sequential() model.add(Embedding(input_dim=1000, output_dim=64, input_length=10)) model.add(LSTM(32)) output = model.output_shape
