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
learned a lot from this, some typo found either. line 177, shape should be [batch, seq_len, target_vocab]
[batch, seq_len, target_vocab]
# Make the prediction out of the decoder output.<br/> logits = tf.layers.dense(dec_out, target_vocab) # [batch, target_vocab]
line 433, should be num_dec_layers
for i in range(self.num_enc_layers): out = self.decoder_layer(out, enc_out, input_mask, target_mask, f'dec_{i}')
The text was updated successfully, but these errors were encountered:
No branches or pull requests
learned a lot from this, some typo found either.
line 177, shape should be
[batch, seq_len, target_vocab]
line 433, should be num_dec_layers
The text was updated successfully, but these errors were encountered: