Spaces:
Runtime error
Runtime error
tlodato
commited on
Commit
·
d51dc3e
1
Parent(s):
e0bc6f2
run button indent
Browse files
app.py
CHANGED
@@ -26,22 +26,22 @@ with gr.Blocks(css="style.css") as demo:
|
|
26 |
gr.Markdown("# Comparing VQA on image perturbation (rotation)")
|
27 |
with gr.Row():
|
28 |
with gr.Column():
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
with gr.Column():
|
33 |
-
|
34 |
|
35 |
outputs = [
|
36 |
out_fuyu,
|
37 |
]
|
38 |
|
39 |
run_button.click(
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
|
46 |
if __name__ == "__main__":
|
47 |
demo.queue(max_size=20).launch()
|
|
|
26 |
gr.Markdown("# Comparing VQA on image perturbation (rotation)")
|
27 |
with gr.Row():
|
28 |
with gr.Column():
|
29 |
+
input_image = gr.Image(type="filepath")
|
30 |
+
text_input = gr.Interface(fn=ask, inputs="text", outputs="text")
|
31 |
+
run_button = gr.Button("ask question")
|
32 |
with gr.Column():
|
33 |
+
out_fuyu = gr.Textbox(label="Fuyu-8B")
|
34 |
|
35 |
outputs = [
|
36 |
out_fuyu,
|
37 |
]
|
38 |
|
39 |
run_button.click(
|
40 |
+
fn=answer_question,
|
41 |
+
inputs=[input_image,text_input],
|
42 |
+
outputs=outputs,
|
43 |
+
api_name="vqa",
|
44 |
+
)
|
45 |
|
46 |
if __name__ == "__main__":
|
47 |
demo.queue(max_size=20).launch()
|