From 8766e836d3286bc42cc558062913d71c7199aea4 Mon Sep 17 00:00:00 2001 From: Marco Cognetta Date: Tue, 11 Jun 2024 22:59:02 +0900 Subject: [PATCH] formatter --- bindings/python/tests/bindings/test_models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bindings/python/tests/bindings/test_models.py b/bindings/python/tests/bindings/test_models.py index 7b6746186..063698384 100644 --- a/bindings/python/tests/bindings/test_models.py +++ b/bindings/python/tests/bindings/test_models.py @@ -73,6 +73,7 @@ def test_dropout_zero(self): model = BPE(dropout=0.0) assert model.dropout == 0.0 + class TestWordPiece: def test_instantiate(self, bert_files): assert isinstance(WordPiece(), Model)