NLP - Text Generation
What will be the output of this code snippet?
```python
import numpy as np
from tensorflow.keras.layers import SimpleRNN
from tensorflow.keras import Input, Model
inputs = Input(shape=(3, 2))
rnn = SimpleRNN(4, return_sequences=True)(inputs)
model = Model(inputs, rnn)
x = np.array([[[1, 0], [0, 1], [1, 1]]])
output = model.predict(x)
print(output.shape)
```
