sappuff commited on
Commit
8f28b0c
·
verified ·
1 Parent(s): 701e793

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py CHANGED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from transformers import pipeline
3
+ pipe = pipeline("image-to-text",
4
+ model = "Salesforce/blip-image-captioning-base")
5
+
6
+ def launch(input):
7
+ out=pipe(input)
8
+ retrun out[0]['generated_text']
9
+
10
+ iface = gr.Interface(launch,
11
+ inputs=gr.Image(type='pil'),
12
+ outputs="text")
13
+ iface.launch(share=True)