fix #1014
This commit is contained in:
@@ -187,6 +187,8 @@ class BertTokenizer(PreTrainedTokenizer):
|
|||||||
index = 0
|
index = 0
|
||||||
if os.path.isdir(vocab_path):
|
if os.path.isdir(vocab_path):
|
||||||
vocab_file = os.path.join(vocab_path, VOCAB_FILES_NAMES['vocab_file'])
|
vocab_file = os.path.join(vocab_path, VOCAB_FILES_NAMES['vocab_file'])
|
||||||
|
else:
|
||||||
|
vocab_file = vocab_path
|
||||||
with open(vocab_file, "w", encoding="utf-8") as writer:
|
with open(vocab_file, "w", encoding="utf-8") as writer:
|
||||||
for token, token_index in sorted(self.vocab.items(), key=lambda kv: kv[1]):
|
for token, token_index in sorted(self.vocab.items(), key=lambda kv: kv[1]):
|
||||||
if index != token_index:
|
if index != token_index:
|
||||||
|
|||||||
Reference in New Issue
Block a user