From 2ef6bfc9b4b5d89bfdd390d84e5626be6b6b2619 Mon Sep 17 00:00:00 2001 From: jaehyeonha Date: Sat, 25 Mar 2023 20:42:46 +0900 Subject: [PATCH] chatbot_tutorial.py typo correct --- beginner_source/chatbot_tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beginner_source/chatbot_tutorial.py b/beginner_source/chatbot_tutorial.py index f127e46a3..e16489ede 100644 --- a/beginner_source/chatbot_tutorial.py +++ b/beginner_source/chatbot_tutorial.py @@ -314,7 +314,7 @@ def trim(self, min_count): len(keep_words), len(self.word2index), len(keep_words) / len(self.word2index) )) - # 사전을 다시 초기화힙니다 + # 사전을 다시 초기화합니다 self.word2index = {} self.word2count = {} self.index2word = {PAD_token: "PAD", SOS_token: "SOS", EOS_token: "EOS"}