Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,10 @@
|
|
1 |
import gradio as gr
|
|
|
|
|
|
|
2 |
|
3 |
def greet(img):
|
4 |
-
return
|
5 |
|
6 |
iface = gr.Interface(fn=greet, inputs=gr.Image(type='filepath'), outputs="text")
|
7 |
iface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
+
from transformers import pipeline
|
3 |
+
|
4 |
+
caption = pipeline("image-to-text", model="Salesforce/blip-image-captioning-large")
|
5 |
|
6 |
def greet(img):
|
7 |
+
return caption(img)
|
8 |
|
9 |
iface = gr.Interface(fn=greet, inputs=gr.Image(type='filepath'), outputs="text")
|
10 |
iface.launch()
|