at2507 commited on
Commit
cd2bea0
1 Parent(s): 69829f1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -1,3 +1,5 @@
1
  import gradio as gr
2
 
3
- gr.Interface.load("models/Salesforce/blip-image-captioning-large").launch()
 
 
 
1
  import gradio as gr
2
 
3
+
4
+ iface = gr.Interface.load('models/Salesforce/blip-image-captioning-large', title="Vanilla Blip Image to Text Demo", description="Image to Text PreTrained Model")
5
+ iface.launch()