tonyassi commited on
Commit
4273fa3
1 Parent(s): c13f700

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -1,7 +1,10 @@
1
  import gradio as gr
 
 
 
2
 
3
  def greet(img):
4
- return 'hey'
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()