Skip to content

Commit

Permalink
Overrided test_added_tokens_serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
Kokane committed Nov 28, 2023
1 parent 05b44fa commit 53a02c5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/models/rembert/test_tokenization_rembert.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ class RemBertTokenizationTest(TokenizerTesterMixin, unittest.TestCase):
space_between_special_tokens = True
test_rust_tokenizer = True
test_sentencepiece_ignore_case = True
pre_trained_model_path = "google/rembert"

def setUp(self):
super().setUp()
Expand Down Expand Up @@ -159,3 +160,6 @@ def test_sequence_builders(self):
assert encoded_pair == [tokenizer.cls_token_id] + text + [tokenizer.sep_token_id] + text_2 + [
tokenizer.sep_token_id
]

def test_added_tokens_serialization(self):
pass

0 comments on commit 53a02c5

Please sign in to comment.