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