In the documentation for SimpleRNN (https://keras.io/layers/recurrent/#simplernncell), it is described as a "Fully-connected RNN where the output is to be fed back to input".
Is there a straightforward way to use this layer (or another built in method) so that I can feed in new inputs (instead of using the outputs from the previous time step)?
e.g., I have a sequence of a thousand numbers
[1 2 3 4 5, ..., 999, 1000]
which I would want to feed into the RNN over 1000 timesteps.
Mathematically, this is equivalent to having the system:
as opposed to: