IamVicky111 commited on
Commit
51be3dc
1 Parent(s): 4bfd9de

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,8 +1,9 @@
1
  import os
 
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)
 
1
  import os
2
+ import gradio as gr
3
  from transformers import pipeline
4
 
5
  pipe = pipeline("image-to-text",
6
+ model="Salesforce/blip-image-captioning-base")
7
 
8
  def launch(input):
9
  out = pipe(input)