turtlegraphics commited on
Commit
4673364
·
verified ·
1 Parent(s): a04d80b

paren error

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,6 +9,6 @@ pipe = pipeline("image-to-text", model="microsoft/git-base")
9
  def classify(image):
10
  return pipe(image)
11
 
12
- demo = gr.Interface(fn=classify, inputs=gr.Image(type="filepath", outputs="text", title="Image Captioning with git-base")
13
 
14
  demo.launch()
 
9
  def classify(image):
10
  return pipe(image)
11
 
12
+ demo = gr.Interface(fn=classify, inputs=gr.Image(type="filepath"), outputs="text", title="Image Captioning with git-base")
13
 
14
  demo.launch()