Update app.py
Browse files
app.py
CHANGED
@@ -1,18 +1,22 @@
|
|
1 |
-
import
|
2 |
-
from
|
3 |
-
from
|
4 |
|
5 |
-
|
6 |
-
|
7 |
-
pipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config)
|
8 |
|
9 |
-
|
10 |
-
|
11 |
-
pipe.enable_vae_slicing()
|
12 |
|
13 |
-
#
|
14 |
-
|
15 |
-
|
16 |
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import requests
|
2 |
+
from PIL import Image
|
3 |
+
from transformers import BlipProcessor, BlipForConditionalGeneration
|
4 |
|
5 |
+
processor = BlipProcessor.from_pretrained("Salesforce/blip-image-captioning-large")
|
6 |
+
model = BlipForConditionalGeneration.from_pretrained("Salesforce/blip-image-captioning-large")
|
|
|
7 |
|
8 |
+
img_url = 'https://storage.googleapis.com/sfr-vision-language-research/BLIP/demo.jpg'
|
9 |
+
raw_image = Image.open(requests.get(img_url, stream=True).raw).convert('RGB')
|
|
|
10 |
|
11 |
+
# conditional image captioning
|
12 |
+
text = "a photography of"
|
13 |
+
inputs = processor(raw_image, text, return_tensors="pt")
|
14 |
|
15 |
+
out = model.generate(**inputs)
|
16 |
+
print(processor.decode(out[0], skip_special_tokens=True))
|
17 |
+
|
18 |
+
# unconditional image captioning
|
19 |
+
inputs = processor(raw_image, return_tensors="pt")
|
20 |
+
|
21 |
+
out = model.generate(**inputs)
|
22 |
+
print(processor.decode(out[0], skip_special_tokens=True))
|