Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -3,8 +3,8 @@ from transformers import pipeline
|
|
3 |
|
4 |
pipe = pipeline("image-to-text", model = "Salesforce/blip-image-captioning-base")
|
5 |
|
6 |
-
def launch(
|
7 |
-
output = pipe(
|
8 |
return output[0]['generated_text']
|
9 |
|
10 |
iface = gr.Interface(launch, inputs = gr.Image(type = 'pil'), outputs = "text")
|
|
|
3 |
|
4 |
pipe = pipeline("image-to-text", model = "Salesforce/blip-image-captioning-base")
|
5 |
|
6 |
+
def launch(inputs):
|
7 |
+
output = pipe(inputs)
|
8 |
return output[0]['generated_text']
|
9 |
|
10 |
iface = gr.Interface(launch, inputs = gr.Image(type = 'pil'), outputs = "text")
|