DurgaDeepak commited on
Commit
11ac6b6
·
verified ·
1 Parent(s): 361957c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -144,7 +144,7 @@ with gr.Blocks() as demo:
144
  run_seg = gr.Checkbox(label="Semantic Segmentation")
145
  run_depth = gr.Checkbox(label="Depth Estimation")
146
 
147
- det_model = gr.Dropdown(choices=list(DETECTION_MODEL_MAP), label="Detection Model", visible=False)
148
  seg_model = gr.Dropdown(choices=list(SEGMENTATION_MODEL_MAP), label="Segmentation Model", visible=False)
149
  depth_model = gr.Dropdown(choices=list(DEPTH_MODEL_MAP), label="Depth Model", visible=False)
150
 
 
144
  run_seg = gr.Checkbox(label="Semantic Segmentation")
145
  run_depth = gr.Checkbox(label="Depth Estimation")
146
 
147
+ det_model = gr.Dropdown(choices=list(DETECTION_MODEL_MAP), label="Detection Model", visible=True)
148
  seg_model = gr.Dropdown(choices=list(SEGMENTATION_MODEL_MAP), label="Segmentation Model", visible=False)
149
  depth_model = gr.Dropdown(choices=list(DEPTH_MODEL_MAP), label="Depth Model", visible=False)
150