MSaadTariq commited on
Commit
b880f89
·
verified ·
1 Parent(s): 844ded4

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -0
app.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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(launch,
13
+ inputs=[gr.Image(label="Upload image", type="pil")],
14
+ outputs=[gr.Textbox(label="Caption")],
15
+ title="ImageLexica",
16
+ description="Generate captions for any image from your Gallery")
17
+
18
+ iface.launch()