RanjithkumarPanjabikesan commited on
Commit
1c6ab51
·
verified ·
1 Parent(s): eaacd9e

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py ADDED
@@ -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
+ def launch(input):
6
+ out = pipe(input)
7
+ return out[0]['generated_text']
8
+ iface = gr.Interface(launch,
9
+ inputs=gr.Image(type='pil'),
10
+ outputs="text")
11
+ iface.launch()
12
+
13
+