NLP - Text Generation
Given this code snippet, what will be the shape of the output tensor from the RNN layer?
```python
import tensorflow as tf
model = tf.keras.Sequential([
tf.keras.layers.Embedding(input_dim=1000, output_dim=64, input_length=10),
tf.keras.layers.SimpleRNN(32, return_sequences=False)
])
input_data = tf.cast(tf.random.uniform((5, 10), maxval=1000, dtype=tf.float32), tf.int32)
output = model(input_data)
print(output.shape)
```
