Skip to content

Commit

Permalink
Fix tokenizer test
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdangerw committed Mar 23, 2024
1 parent 9c8c6f6 commit 60bde7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keras_nlp/models/electra/electra_tokenizer_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test_smallest_preset(self):
cls=ElectraTokenizer,
preset="electra_small_discriminator_en",
input_data=["The quick brown fox."],
expected_output=[[1996, 4248, 2829, 4419, 1012]],
expected_output=[[100, 4248, 2829, 4419, 1012]],
)

@pytest.mark.extra_large
Expand Down

0 comments on commit 60bde7c

Please sign in to comment.