We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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])
The text was updated successfully, but these errors were encountered:
yes, I think you are right! In https://github.com/igul222/pixel_rnn theano code just do like that.
Sorry, something went wrong.
yesyes, I think so!!!
No branches or pull requests
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])
The text was updated successfully, but these errors were encountered: