Update app.py
Browse files
app.py
CHANGED
@@ -11,7 +11,9 @@ def launch(input):
|
|
11 |
|
12 |
image_captioner_app = gr.Interface(launch,
|
13 |
inputs=gr.Image(type='pil'),
|
14 |
-
outputs="Caption of the Image")
|
|
|
|
|
15 |
|
16 |
with gr.Blocks() as demo:
|
17 |
gr.TabbedInterface(
|
|
|
11 |
|
12 |
image_captioner_app = gr.Interface(launch,
|
13 |
inputs=gr.Image(type='pil'),
|
14 |
+
outputs=gr.Textbox(label = "Caption of the Image"),
|
15 |
+
title = "Image Captioning",
|
16 |
+
description = "BLIP")
|
17 |
|
18 |
with gr.Blocks() as demo:
|
19 |
gr.TabbedInterface(
|