Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
eaidova committed Nov 5, 2024
1 parent c9954c0 commit 9cfd649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/openvino/test_modeling.py
Original file line number Diff line number Diff line change
Expand Up @@ -1934,7 +1934,7 @@ def test_compare_to_transformers(self, model_arch):
self.assertIsInstance(getattr(ov_model, additional_part), MODEL_PARTS_CLS_MAPPING[additional_part])
self.assertIsInstance(ov_model.config, PretrainedConfig)
# pytorch minicpmv and internvl are not designed to be used via forward
if not model_arch in ["minicpmv", "internvl2"]:
if model_arch not in ["minicpmv", "internvl2"]:
set_seed(SEED)
ov_outputs = ov_model(**inputs)
set_seed(SEED)
Expand Down

0 comments on commit 9cfd649

Please sign in to comment.