fix error info

Former-commit-id: 7e8655c8b59c3fdc455e304cf875a6b7fcb69290
This commit is contained in:
hiyouga 2023-09-19 18:30:23 +08:00
parent 4e6e42bb55
commit 48e7b600a8

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