Skip to content

Commit c7c62e0

Browse files
authored
Merge pull request #10203 from wojtuss/fix-typo
Fix typo in wmt16
2 parents 6eeb819 + 25d5e22 commit c7c62e0

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)