Skip to content

Commit

Permalink
rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dsikka committed Aug 1, 2023
1 parent b0695f6 commit 734c609
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/deepsparse/pipelines/test_clip.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,10 @@ def test_text_clip(engine, text_input):
def test_zero_shot(engine, visual_input, text_input):
model_path_text = text_input[-1]
model_path_visual = visual_input[-1]
<<<<<<< HEAD
kwargs = {
"visual_model_path": model_path_visual,
"text_model_path": model_path_text,
}
=======
visual_args = {"model_path": model_path_visual}
text_args = {"model_path": model_path_text}
kwargs = {"visual_args": visual_args, "text_args": text_args}
>>>>>>> move paths to fixtures
pipeline = BasePipeline.create(task="clip_zeroshot", **kwargs)
assert isinstance(pipeline, CLIPZeroShotPipeline)
pipeline_input = CLIPZeroShotInput(
Expand Down

0 comments on commit 734c609

Please sign in to comment.