From 8a4c319d331beb72b5f34ef4977600590d9a72dc Mon Sep 17 00:00:00 2001 From: Younes Belkada <49240599+younesbelkada@users.noreply.github.com> Date: Fri, 17 Feb 2023 19:26:36 +0100 Subject: [PATCH] [`BLIP`] update blip path on slow tests (#21476) * update blip path * Update tests/models/blip/test_modeling_blip.py --- tests/models/blip/test_modeling_blip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/models/blip/test_modeling_blip.py b/tests/models/blip/test_modeling_blip.py index c1c208d36b..3a847aaff0 100644 --- a/tests/models/blip/test_modeling_blip.py +++ b/tests/models/blip/test_modeling_blip.py @@ -1077,7 +1077,7 @@ class BlipTextImageModelTest(ModelTesterMixin, unittest.TestCase): # We will verify our results on an image of cute cats def prepare_img(): - url = "https://storage.googleapis.com/sfr-vision-language-research/BLIP/demo.jpg" + url = "https://huggingface.co/hf-internal-testing/blip-test-image/resolve/main/demo.jpg" im = Image.open(requests.get(url, stream=True).raw) return im