Spaces:
Runtime error
Runtime error
Commit
·
34abd19
1
Parent(s):
17fbc96
Update app.py
Browse files
app.py
CHANGED
@@ -64,4 +64,7 @@ def process_images_and_statements(image):
|
|
64 |
|
65 |
# Gradio interface
|
66 |
image_input = gr.inputs.Image()
|
67 |
-
output = gr.outputs.Textbox(label
|
|
|
|
|
|
|
|
64 |
|
65 |
# Gradio interface
|
66 |
image_input = gr.inputs.Image()
|
67 |
+
output = gr.outputs.Textbox(label="Results")
|
68 |
+
|
69 |
+
iface = gr.Interface(fn=process_images_and_statements, inputs=image_input, outputs=output, title="Image Captioning and Image-Text Matching")
|
70 |
+
iface.launch()
|