I am not very familiar with RNN (LSTM, GRU) models and I wanted to check how I can construct a model where the output of one RNN Cell is the input to the other using Keras.
Do I have to construct my own model using LSTMCell for example?
In Keras, you can create a sequence-to-sequence model with recurrent layers (e.g., LSTM, GRU) where the output of one cell is used as the input to the next cell within the sequence. You don’t need to create your own LSTM cell; Keras provides high-level APIs to handle this.