Error in Seq2Seq_solutions.ipynb
dixiematt8 opened this issue · 0 comments
dixiematt8 commented
This line has error
loss = tf.nn.sparse_softmax_cross_entropy_with_logits(logits=logits, labels=y)
It should be
loss=tf.nn.softmax_cross_entropy_with_logits(logits=logits,labels=dec_inputs)