keras LSTM结构图

Structure diagram of the keras LSTM

我正在读这个 post https://machinelearningmastery.com/time-series-prediction-lstm-recurrent-neural-networks-python-keras/ 我想在脑海中画出 LSTM 网络的结构。分析这部分代码:

model = Sequential()
model.add(LSTM(4, input_shape=(1, look_back)))

其中look_back = 1,模型图可能是这样的?

输入为粉色框,隐藏层为绿色框,输出为蓝色框

不,你还有一个 LSTM 层和四个 LSTM 神经元。

顺便说一句:如果您正在寻找一种可视化 ANN 的快速方法: Netron