carpedm20 / pixel-rnn-tensorflow

in progress
MIT License
496 stars 129 forks source link

add two output maps in diagonal BiLSTM #16

Open powder21 opened 7 years ago

powder21 commented 7 years ago

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])

ChengBinJin commented 5 years ago

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

lujiarui-iie commented 1 year ago

yesyes, I think so!!!