Skip to content
This repository was archived by the owner on Aug 18, 2021. It is now read-only.

Commit a3e220f

Browse files
authored
Merge pull request #89 from tejaslodaya/master
Fix NLL_loss error
2 parents 1168c93 + a87890c commit a3e220f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

seq2seq-translation/seq2seq-translation.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -823,14 +823,14 @@
823823
" # Teacher forcing: Use the ground-truth target as the next input\n",
824824
" for di in range(target_length):\n",
825825
" decoder_output, decoder_context, decoder_hidden, decoder_attention = decoder(decoder_input, decoder_context, decoder_hidden, encoder_outputs)\n",
826-
" loss += criterion(decoder_output[0], target_variable[di])\n",
826+
" loss += criterion(decoder_output, target_variable[di])\n",
827827
" decoder_input = target_variable[di] # Next target is next input\n",
828828
"\n",
829829
" else:\n",
830830
" # Without teacher forcing: use network's own prediction as the next input\n",
831831
" for di in range(target_length):\n",
832832
" decoder_output, decoder_context, decoder_hidden, decoder_attention = decoder(decoder_input, decoder_context, decoder_hidden, encoder_outputs)\n",
833-
" loss += criterion(decoder_output[0], target_variable[di])\n",
833+
" loss += criterion(decoder_output, target_variable[di])\n",
834834
" \n",
835835
" # Get most likely word index (highest value) from output\n",
836836
" topv, topi = decoder_output.data.topk(1)\n",

0 commit comments

Comments
 (0)