he99codes commited on
Commit
90757af
·
verified ·
1 Parent(s): 3a6f339

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -1,7 +1,9 @@
1
  import gradio as gr
2
  from transformers import pipeline
3
- pipe = pipeline("image-to-text",
4
- model="Salesforce/blip-image-captioning-base")
 
 
5
  def launch(input):
6
  out = pipe(input)
7
  return out[0]['generated_text']
 
1
  import gradio as gr
2
  from transformers import pipeline
3
+ pipe = pipeline(
4
+ "image-text-to-text",
5
+ model="Salesforce/blip-image-captioning-base"
6
+ )
7
  def launch(input):
8
  out = pipe(input)
9
  return out[0]['generated_text']