Update test-tokenizer-random.py
Re-added type declarations
This commit is contained in:
parent
bc8648fbbe
commit
883dc22d44
1 changed files with 1 additions and 1 deletions
|
@ -423,7 +423,7 @@ def compare_tokenizers(tokenizer1: TokenizerGroundtruth, tokenizer2: TokenizerLl
|
||||||
# return -1
|
# return -1
|
||||||
# return min(len(ids1), len(ids2))
|
# return min(len(ids1), len(ids2))
|
||||||
# Rewritten to use zip() and next() instead of for loop
|
# Rewritten to use zip() and next() instead of for loop
|
||||||
def find_first_mismatch(ids1, ids2) -> int:
|
def find_first_mismatch(ids1: Sequence[Any], ids2: Sequence[Any]) -> int:
|
||||||
index = next((i for i, (a, b) in enumerate(zip(ids1, ids2)) if a != b), -1)
|
index = next((i for i, (a, b) in enumerate(zip(ids1, ids2)) if a != b), -1)
|
||||||
if index < 0 and len(ids1) != len(ids2):
|
if index < 0 and len(ids1) != len(ids2):
|
||||||
index = min(len(ids1), len(ids2))
|
index = min(len(ids1), len(ids2))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue