tlodato commited on
Commit
2246470
·
1 Parent(s): 335893e
Files changed (1) hide show
  1. app.py +6 -7
app.py CHANGED
@@ -23,16 +23,15 @@ css = """
23
  """
24
 
25
  with gr.Blocks(css=css) as demo:
26
- with gr.Row():
27
- with gr.Column():
28
- image_input = gr.Image(label="Upload your Image", type="pil")
29
- text_input = gr.Textbox(label="Ask a Question")
30
- vqa_output = gr.Textbox(label="Output")
31
  vqa_btn = gr.Button("Answer Visual Question")
32
  vqa_btn.click(
33
  fn=vqa,
34
- inputs = [image_input,text_input],
35
  outputs = vqa_output
36
  )
37
 
38
- demo.launch()
 
 
23
  """
24
 
25
  with gr.Blocks(css=css) as demo:
26
+ image_input = gr.Image(label="Upload your Image", type="pil")
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 = [filepath,question],
33
  outputs = vqa_output
34
  )
35
 
36
+ if __name__ == "__main__":
37
+ demo.launch()