Manolo7X commited on
Commit
6f0ea2e
1 Parent(s): 70cb746

Update app.py

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