From 0151a9f1e30f9ea18ff66de5ab683a519925a1ea Mon Sep 17 00:00:00 2001 From: eonr <31450654+eonr@users.noreply.github.com> Date: Tue, 8 Jan 2019 17:33:15 +0530 Subject: [PATCH] Missing space character for an example All the other apostrophe-containing prefixes have a space after the last character except for "she s" (should be "she s "). --- 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 3f305c4d87a..ba1a919975a 100644 --- a/intermediate_source/seq2seq_translation_tutorial.py +++ b/intermediate_source/seq2seq_translation_tutorial.py @@ -240,7 +240,7 @@ def readLangs(lang1, lang2, reverse=False): eng_prefixes = ( "i am ", "i m ", "he is", "he s ", - "she is", "she s", + "she is", "she s ", "you are", "you re ", "we are", "we re ", "they are", "they re "