Update app.py
Browse files
app.py
CHANGED
@@ -11,12 +11,13 @@ model = BlipForConditionalGeneration.from_pretrained(model_id)
|
|
11 |
processor = BlipProcessor.from_pretrained(model_id)
|
12 |
|
13 |
def launch(input):
|
14 |
-
|
15 |
for file in input:
|
16 |
-
inputs
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
20 |
|
21 |
description = "Simple BLIP test app for image captioning."
|
22 |
|
|
|
11 |
processor = BlipProcessor.from_pretrained(model_id)
|
12 |
|
13 |
def launch(input):
|
14 |
+
outputs = []
|
15 |
for file in input:
|
16 |
+
inputs = processor(Image.open(file.name), return_tensors="pt")
|
17 |
+
out = model.generate(**inputs)
|
18 |
+
outputs.append(processor.decode(out[0], skip_special_tokens=True)
|
19 |
+
|
20 |
+
return outputs
|
21 |
|
22 |
description = "Simple BLIP test app for image captioning."
|
23 |
|