Spaces:
Sleeping
Sleeping
Update app.py
Browse filesChanged GUI labels
app.py
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
|
4 |
-
pipe = pipeline("image-to-text",
|
5 |
-
model="Salesforce/blip-image-captioning-base")
|
6 |
-
|
7 |
|
8 |
def launch(input):
|
9 |
out = pipe(input)
|
10 |
return out[0]['generated_text']
|
11 |
|
12 |
-
iface = gr.Interface(
|
13 |
-
|
14 |
-
|
|
|
|
|
15 |
|
16 |
iface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
|
4 |
+
pipe = pipeline("image-to-text", model="Salesforce/blip-image-captioning-base")
|
|
|
|
|
5 |
|
6 |
def launch(input):
|
7 |
out = pipe(input)
|
8 |
return out[0]['generated_text']
|
9 |
|
10 |
+
iface = gr.Interface(
|
11 |
+
fn=launch,
|
12 |
+
inputs=gr.Image(type='pil', label="Upload a picture to be captioned"),
|
13 |
+
outputs=gr.Textbox(label="Picture Caption:")
|
14 |
+
)
|
15 |
|
16 |
iface.launch()
|