Unverified Commit 11492431 authored by Nicolas Patry's avatar Nicolas Patry Committed by GitHub
Browse files

Fixing typo in error message. (#14226)

parent 2c8957fe
...@@ -431,14 +431,14 @@ class LayoutLMv2Tokenizer(PreTrainedTokenizer): ...@@ -431,14 +431,14 @@ class LayoutLMv2Tokenizer(PreTrainedTokenizer):
raise ValueError("text input must of type `str` (single example) or `List[str]` (batch of examples). ") raise ValueError("text input must of type `str` (single example) or `List[str]` (batch of examples). ")
if not isinstance(text_pair, (list, tuple)): if not isinstance(text_pair, (list, tuple)):
raise ValueError( raise ValueError(
"words must of type `List[str]` (single pretokenized example), " "Words must be of type `List[str]` (single pretokenized example), "
"or `List[List[str]]` (batch of pretokenized examples)." "or `List[List[str]]` (batch of pretokenized examples)."
) )
else: else:
# in case only text is provided => must be words # in case only text is provided => must be words
if not isinstance(text, (list, tuple)): if not isinstance(text, (list, tuple)):
raise ValueError( raise ValueError(
"Words must of type `List[str]` (single pretokenized example), " "Words must be of type `List[str]` (single pretokenized example), "
"or `List[List[str]]` (batch of pretokenized examples)." "or `List[List[str]]` (batch of pretokenized examples)."
) )
......
...@@ -235,14 +235,14 @@ class LayoutLMv2TokenizerFast(PreTrainedTokenizerFast): ...@@ -235,14 +235,14 @@ class LayoutLMv2TokenizerFast(PreTrainedTokenizerFast):
raise ValueError("text input must of type `str` (single example) or `List[str]` (batch of examples). ") raise ValueError("text input must of type `str` (single example) or `List[str]` (batch of examples). ")
if not isinstance(text_pair, (list, tuple)): if not isinstance(text_pair, (list, tuple)):
raise ValueError( raise ValueError(
"words must of type `List[str]` (single pretokenized example), " "Words must be of type `List[str]` (single pretokenized example), "
"or `List[List[str]]` (batch of pretokenized examples)." "or `List[List[str]]` (batch of pretokenized examples)."
) )
else: else:
# in case only text is provided => must be words # in case only text is provided => must be words
if not isinstance(text, (list, tuple)): if not isinstance(text, (list, tuple)):
raise ValueError( raise ValueError(
"Words must of type `List[str]` (single pretokenized example), " "Words must be of type `List[str]` (single pretokenized example), "
"or `List[List[str]]` (batch of pretokenized examples)." "or `List[List[str]]` (batch of pretokenized examples)."
) )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment