Initializing LSTM hidden state Tensorflow/Keras
问题 Can someone explain how can I initialize hidden state of LSTM in tensorflow? I am trying to build LSTM recurrent auto-encoder, so after i have that model trained i want to transfer learned hidden state of unsupervised model to hidden state of supervised model. Is that even possible with current API? This is paper I am trying to recreate: http://papers.nips.cc/paper/5949-semi-supervised-sequence-learning.pdf 回答1: Yes - this is possible but truly cumbersome. Let's go through an example.