py : fix empty bytes arg

This commit is contained in:
Georgi Gerganov 2024-02-05 19:53:07 +02:00
parent ded2ad5b88
commit adcf16fd68
No known key found for this signature in database
GPG Key ID: 449E073F9DC10735

View File

@ -534,7 +534,7 @@ class HfVocab:
def added_tokens(self) -> Iterable[tuple[bytes, float, gguf.TokenType]]:
for text in self.added_tokens_list:
if text in self.specials:
toktype = self.get_token_type(self.specials[text], [], self.special_ids)
toktype = self.get_token_type(self.specials[text], b'', self.special_ids)
score = self.get_token_score(self.specials[text])
else:
toktype = gguf.TokenType.USER_DEFINED