Siddhanth Sridhar commited on
Commit
786c16a
1 Parent(s): eb31089

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -4
app.py CHANGED
@@ -1,7 +1,16 @@
1
  import gradio as gr
 
2
 
3
- css = """
4
- footer {visibility: hidden !important;}
5
- """
6
 
7
- gr.Interface.load("models/Salesforce/blip-image-captioning-large", css=css, concurrency_limit=24).launch(share=False, debug=False, show_error=False, show_api=False)
 
 
 
 
 
 
 
 
 
 
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(type='pil'),
14
+ outputs="text")
15
+
16
+ iface.launch()