Update app.py
Browse files
app.py
CHANGED
@@ -283,9 +283,9 @@ with gr.Blocks(css=".custom-label { font-weight: bold !important; font-size: 16p
|
|
283 |
ckpt_select_dropdown = gr.Dropdown(
|
284 |
label="Select the Model for Detection ⬇️",
|
285 |
elem_classes="custom-label",
|
286 |
-
choices=CKPT_NAME + ['continuously updating...'],
|
287 |
multiselect=False,
|
288 |
-
value='
|
289 |
interactive=True,
|
290 |
)
|
291 |
model_loading_status = gr.Textbox(label="Model Loading Status")
|
|
|
283 |
ckpt_select_dropdown = gr.Dropdown(
|
284 |
label="Select the Model for Detection ⬇️",
|
285 |
elem_classes="custom-label",
|
286 |
+
choices=['Choose Model Here 🖱️'] + CKPT_NAME + ['continuously updating...'],
|
287 |
multiselect=False,
|
288 |
+
value='Choose Model Here 🖱️',
|
289 |
interactive=True,
|
290 |
)
|
291 |
model_loading_status = gr.Textbox(label="Model Loading Status")
|