malikzeeshan commited on
Commit
4f0cf12
1 Parent(s): 58aa730

Create app1.py

Browse files
Files changed (1) hide show
  1. app1.py +16 -0
app1.py CHANGED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import gradio as gr
3
+ from transformers import pipeline
4
+
5
+ pipe = pipeline("image-to-text",
6
+ model="./models/Salesforce/blip-image-captioning-base")
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(type='pil'),
14
+ outputs="text")
15
+
16
+ iface.launch()