Spaces:
Runtime error
Runtime error
tlodato
commited on
Commit
·
8851b61
1
Parent(s):
2246470
update
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ client = Client("https://adept-fuyu-8b-demo.hf.space/--replicas/9kcqv/")
|
|
8 |
filepath = "https://raw.githubusercontent.com/gradio-app/gradio/main/test/test_files/bus.png"
|
9 |
question = "what color is the bus?"
|
10 |
|
11 |
-
def vqa(image, prompt:str):
|
12 |
result = client.predict(image,prompt,fn_index=3)
|
13 |
print("result: "+result)
|
14 |
print("result lstrip"+result.lstrip())
|
@@ -23,13 +23,13 @@ css = """
|
|
23 |
"""
|
24 |
|
25 |
with gr.Blocks(css=css) as demo:
|
26 |
-
image_input = gr.Image(label="Upload your Image", type="
|
27 |
text_input = gr.Textbox(label="Ask a Question")
|
28 |
vqa_output = gr.Textbox(label="Output")
|
29 |
vqa_btn = gr.Button("Answer Visual Question")
|
30 |
vqa_btn.click(
|
31 |
fn=vqa,
|
32 |
-
inputs = [
|
33 |
outputs = vqa_output
|
34 |
)
|
35 |
|
|
|
8 |
filepath = "https://raw.githubusercontent.com/gradio-app/gradio/main/test/test_files/bus.png"
|
9 |
question = "what color is the bus?"
|
10 |
|
11 |
+
def vqa(image:str, prompt:str):
|
12 |
result = client.predict(image,prompt,fn_index=3)
|
13 |
print("result: "+result)
|
14 |
print("result lstrip"+result.lstrip())
|
|
|
23 |
"""
|
24 |
|
25 |
with gr.Blocks(css=css) as demo:
|
26 |
+
image_input = gr.Image(label="Upload your Image", type="str")
|
27 |
text_input = gr.Textbox(label="Ask a Question")
|
28 |
vqa_output = gr.Textbox(label="Output")
|
29 |
vqa_btn = gr.Button("Answer Visual Question")
|
30 |
vqa_btn.click(
|
31 |
fn=vqa,
|
32 |
+
inputs = [image_input,text_input],
|
33 |
outputs = vqa_output
|
34 |
)
|
35 |
|