You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, for anyone having the same problem with tf version 0.12.1, change the line
from tensorflow.contrib.legacy_seq2seq import sequence_loss
for:
from tensorflow.python.ops.seq2seq import sequence_loss
You may also run into another problem with the function softmax_loss_function (in ntm.py) which calls tf.nn.sigmoid_cross_entropy_with_logits. The name of the parameters have changed, you can modify the function to return:
Below I show I have verified I have tensorflow 0.12.1, and the error trying to run the copy task.
Any help trying to resolve this issue would be appreciated!
The text was updated successfully, but these errors were encountered: