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
Hello, has anybody successfully ported to TensorFlow 1.4 ? I am encountering problems, and would appreciate help.
38 # Build RNN ---> 39 outputs, final_state = tf.nn.dynamic_rnn(cell, embed, dtype=tf.float32)
if embed_dim is different from rnn_size. For the time being, I leave the 2 values equal.
embed_dim
rnn_size
---> 34 pred_word = pick_word(probabilities[dyn_seq_length-1], int_to_vocab) IndexError: index 2 is out of bounds for axis 0 with size 1
same problem as #15
Any ideas ?
The text was updated successfully, but these errors were encountered:
I also got a similar error on this line.. Fixed it by changing it to.. pred_word = pick_word(probabilities[0][dyn_seq_length-1], int_to_vocab)
pred_word = pick_word(probabilities[0][dyn_seq_length-1], int_to_vocab)
Sorry, something went wrong.
Did anyone get it working with Tensorflow 1.4? I would like to run this on google cloud, but they don't support TensorFlow 1.0 anymore...
No branches or pull requests
Hello,
has anybody successfully ported to TensorFlow 1.4 ?
I am encountering problems, and would appreciate help.
if
embed_dim
is different fromrnn_size
.For the time being, I leave the 2 values equal.
same problem as #15
Any ideas ?
The text was updated successfully, but these errors were encountered: