Spaces:
Sleeping
Sleeping
paren error
Browse files
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()
|