mirror of
https://github.com/huggingface/transformers.git
synced 2025-08-01 02:31:11 +06:00
Updated DistilBERT test to reflect the sequence encoding
This commit is contained in:
parent
d572d7027b
commit
c4d4f3ec8c
@ -39,8 +39,8 @@ class DistilBertTokenizationTest(BertTokenizationTest):
|
|||||||
encoded_sentence = tokenizer.add_special_tokens_single_sentence(text)
|
encoded_sentence = tokenizer.add_special_tokens_single_sentence(text)
|
||||||
encoded_pair = tokenizer.add_special_tokens_sentences_pair(text, text_2)
|
encoded_pair = tokenizer.add_special_tokens_sentences_pair(text, text_2)
|
||||||
|
|
||||||
assert encoded_sentence == [101] + text + [102]
|
assert encoded_sentence == text
|
||||||
assert encoded_pair == [101] + text + [102] + text_2 + [102]
|
assert encoded_pair == text + [102] + text_2
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
unittest.main()
|
unittest.main()
|
Loading…
Reference in New Issue
Block a user