Concerning the structure of a LSTM network
If I wanted to create LSTM network for solving time series predictions, how should I structure the hiddens layers of the neural network?
- A
LSTM memory blockwould represent a hidden layer and all the nodes in the layer would be represented bycells? - Each hidden layer should consist of numerous
LSTM memory blocks, and a collection of such blocks will form a layer?
Graphical representation:
Either in this manner:

Or like this ?

