【发布时间】:2019-10-04 09:27:07
【问题描述】:
我无法理解 LSTM 的概念并在 Keras 上使用它。在考虑 LSTM 层时,输出大小和隐藏状态大小应该有两个值。
1. hidden state size : how many features are passed across the time steps of a samples when training the model
2. output size : how many outputs should be returned by particular LSTM layer
但是在keras.layers.LSTM中,只有一个参数,用来控制层的输出大小。
问题:
Therefore how hidden state size of the LSTM layer can be changed?
如果我被误解了,非常感谢更正。
【问题讨论】:
标签: tensorflow keras lstm recurrent-neural-network