Skip to content

Commit 25d5e22

Browse files
author
Wojciech Uss
committed
Fix typo in wmt16
1 parent 64babc9 commit 25d5e22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/paddle/dataset/wmt16.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def __get_dict_size(src_dict_size, trg_dict_size, src_lang):
9696
src_dict_size = min(src_dict_size, (TOTAL_EN_WORDS if src_lang == "en" else
9797
TOTAL_DE_WORDS))
9898
trg_dict_size = min(trg_dict_size, (TOTAL_DE_WORDS if src_lang == "en" else
99-
TOTAL_ENG_WORDS))
99+
TOTAL_EN_WORDS))
100100
return src_dict_size, trg_dict_size
101101

102102

0 commit comments

Comments
 (0)