Skip to content

Commit 4b5277f

Browse files
authored
Merge pull request #5 from toriving/patch-2
Correct typos
2 parents 01a8099 + 75f9715 commit 4b5277f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

6.CHATBOT/6.3 seq2seq/data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
PAD = "<PADDING>"
1414
STD = "<START>"
1515
END = "<END>"
16-
UNK = "<UNKNWON>"
16+
UNK = "<UNKNOWN>"
1717

1818
PAD_INDEX = 0
1919
STD_INDEX = 1
@@ -221,7 +221,7 @@ def load_vocabulary():
221221
# PAD = "<PADDING>"
222222
# STD = "<START>"
223223
# END = "<END>"
224-
# UNK = "<UNKNWON>"
224+
# UNK = "<UNKNOWN>"
225225
words[:0] = MARKER
226226
# 사전 리스트를 사전 파일로 만들어 넣는다.
227227
with open(DEFINES.vocabulary_path, 'w', encoding='utf-8') as vocabulary_file:

0 commit comments

Comments
 (0)