We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74a6e5b commit 5114009Copy full SHA for 5114009
tests/deepsparse/pipelines/test_clip.py
@@ -72,16 +72,10 @@ def test_text_clip(engine, text_input):
72
def test_zero_shot(engine, visual_input, text_input):
73
model_path_text = text_input[-1]
74
model_path_visual = visual_input[-1]
75
-<<<<<<< HEAD
76
kwargs = {
77
"visual_model_path": model_path_visual,
78
"text_model_path": model_path_text,
79
}
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
85
pipeline = BasePipeline.create(task="clip_zeroshot", **kwargs)
86
assert isinstance(pipeline, CLIPZeroShotPipeline)
87
pipeline_input = CLIPZeroShotInput(
0 commit comments