harishB97 commited on
Commit
6d6aff3
·
verified ·
1 Parent(s): f809c5d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -96,11 +96,11 @@ with gr.Blocks() as demo:
96
  with gr.Column():
97
  dropdown_1_nodename = gr.Dropdown(label="Select a node name", choices=list(nodename_to_protoIDs.keys()))
98
  dropdown_1_protos = gr.Dropdown(label="Select a prototype ID", choices=[], allow_custom_value=True)
99
- image_output_1 = gr.Image('new_teaser (3)-1.png')
100
  with gr.Column():
101
  dropdown_2_nodename = gr.Dropdown(label="Select a node name", choices=list(nodename_to_protoIDs.keys()))
102
  dropdown_2_protos = gr.Dropdown(label="Select a prototype ID", choices=[], allow_custom_value=True)
103
- image_output_2 = gr.Image('new_teaser (3)-1.png')
104
 
105
  dropdown_1_nodename.change(get_protoIDs, dropdown_1_nodename, dropdown_1_protos)
106
  dropdown_1_protos.change(get_image, [dropdown_1_nodename, dropdown_1_protos], image_output_1)
 
96
  with gr.Column():
97
  dropdown_1_nodename = gr.Dropdown(label="Select a node name", choices=list(nodename_to_protoIDs.keys()))
98
  dropdown_1_protos = gr.Dropdown(label="Select a prototype ID", choices=[], allow_custom_value=True)
99
+ image_output_1 = gr.Image()
100
  with gr.Column():
101
  dropdown_2_nodename = gr.Dropdown(label="Select a node name", choices=list(nodename_to_protoIDs.keys()))
102
  dropdown_2_protos = gr.Dropdown(label="Select a prototype ID", choices=[], allow_custom_value=True)
103
+ image_output_2 = gr.Image()
104
 
105
  dropdown_1_nodename.change(get_protoIDs, dropdown_1_nodename, dropdown_1_protos)
106
  dropdown_1_protos.change(get_image, [dropdown_1_nodename, dropdown_1_protos], image_output_1)