From efa90dafaec196eb8d67742ac5c1f7711eaab5c2 Mon Sep 17 00:00:00 2001 From: Joseph Spisak Date: Sun, 4 Aug 2019 22:12:25 -0700 Subject: [PATCH] Update seq2seq_translation_tutorial.py Updated link to the paper on Teacher Forcing: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.378.4095&rep=rep1&type=pdf --- intermediate_source/seq2seq_translation_tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intermediate_source/seq2seq_translation_tutorial.py b/intermediate_source/seq2seq_translation_tutorial.py index 587d5edfe94..fe233e59343 100644 --- a/intermediate_source/seq2seq_translation_tutorial.py +++ b/intermediate_source/seq2seq_translation_tutorial.py @@ -521,7 +521,7 @@ def tensorsFromPair(pair): # each next input, instead of using the decoder's guess as the next input. # Using teacher forcing causes it to converge faster but `when the trained # network is exploited, it may exhibit -# instability `__. +# instability `__. # # You can observe outputs of teacher-forced networks that read with # coherent grammar but wander far from the correct translation -