Is the encoder in decoder = LSTM(128)(encoder) the hidden state or the input to the decoder?

前端 未结 0 1267
深忆病人
深忆病人 2021-01-05 09:21

Here is a sample code:

    inputs = input(shape=shape)
    encoder = LSTM(128)(inputs)
    decoder = LSTM(128)(encoder)

Now, is the enc

相关标签:
回答
  • 消灭零回复
提交回复
热议问题