ybelkada commited on
Commit
f6663c7
·
1 Parent(s): 77d18c4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py CHANGED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
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="text", outputs="text")
11
+ iface.launch()