Skip to content

Commit 5114009

Browse files
committed
rebase fix
1 parent 74a6e5b commit 5114009

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

Diff for: tests/deepsparse/pipelines/test_clip.py

-6
Original file line numberDiff line numberDiff line change
@@ -72,16 +72,10 @@ def test_text_clip(engine, text_input):
7272
def test_zero_shot(engine, visual_input, text_input):
7373
model_path_text = text_input[-1]
7474
model_path_visual = visual_input[-1]
75-
<<<<<<< HEAD
7675
kwargs = {
7776
"visual_model_path": model_path_visual,
7877
"text_model_path": model_path_text,
7978
}
80-
=======
81-
visual_args = {"model_path": model_path_visual}
82-
text_args = {"model_path": model_path_text}
83-
kwargs = {"visual_args": visual_args, "text_args": text_args}
84-
>>>>>>> move paths to fixtures
8579
pipeline = BasePipeline.create(task="clip_zeroshot", **kwargs)
8680
assert isinstance(pipeline, CLIPZeroShotPipeline)
8781
pipeline_input = CLIPZeroShotInput(

0 commit comments

Comments
 (0)