Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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=
|
| 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 |
|