fix error info

This commit is contained in:
hiyouga 2023-09-19 18:30:23 +08:00
parent 469f859161
commit 7e8655c8b5
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ class Template:
elif isinstance(elem, dict):
token_ids = token_ids + [tokenizer.convert_tokens_to_ids(elem.get("token"))]
else:
raise NotImplementedError
raise ValueError("Input must be string or dict[str, str], got {}".format(type(elem)))
return token_ids