RobBaldauf commited on
Commit
3cf940c
1 Parent(s): 8ebbf8e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -2,7 +2,8 @@ import gradio as gr
2
  from transformers import pipeline
3
 
4
  pipe = pipeline("image-to-text",
5
- model="./models/Salesforce/blip-image-captioning-base")
 
6
 
7
  def launch(input):
8
  out = pipe(input)
@@ -12,8 +13,4 @@ iface = gr.Interface(launch,
12
  inputs=gr.Image(type='pil'),
13
  outputs="text")
14
 
15
- iface = gr.Interface(launch,
16
- inputs=gr.Image(type='pil'),
17
- outputs="text")
18
-
19
  iface.launch()
 
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)
 
13
  inputs=gr.Image(type='pil'),
14
  outputs="text")
15
 
 
 
 
 
16
  iface.launch()