pixel-rnn-tensorflow icon indicating copy to clipboard operation
pixel-rnn-tensorflow copied to clipboard

add two output maps in diagonal BiLSTM

Open powder21 opened this issue 7 years ago • 2 comments

output_state_bw_with_last_zeros = tf.concat(1, [output_state_bw_except_last, dummy_zeros])

should be

output_state_bw_with_last_zeros = tf.concat(1, [dummy_zeros, output_state_bw_except_last])

powder21 avatar Oct 16 '17 13:10 powder21

yes, I think you are right! In https://github.com/igul222/pixel_rnn theano code just do like that.

ChengBinJin avatar Dec 31 '18 07:12 ChengBinJin

yesyes, I think so!!!

lujiarui-iie avatar Jun 17 '23 12:06 lujiarui-iie