fethanus commited on
Commit
47dce90
·
verified ·
1 Parent(s): 6b87394

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
+
4
+ pipe = pipeline("image-to-text", model="Salesforce/blip-image-captioning-base")
5
+
6
+ def launch(input):
7
+ out = pipe(input)
8
+ return out[0]['generated_text']
9
+
10
+ iface = gr.Interface(launch, inputs=gr.image(type='pip'),
11
+ outputs="text")
12
+
13
+ iface.launch()