Can I get the H and C states of the LSTM?
Author: ghostCreated Nov 29, 2020Updated Nov 29, 2020
Hi. I wish to build encoder and decoder model, but I don't know where the H and C states of the encoder are, and how to use them as the initial state of the decoder?
Pseudocode:
[outputs, stateH, stateC] = LSTM()
[outputs] = LSTM(initial_state=[stateH, stateC])Thank you
Source: cazala/synaptic