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=
|
| 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=CKPT_NAME + ['continuously updating...'],
|
| 287 |
multiselect=False,
|
| 288 |
+
value='✨Unified-detector_v1_Fine-tuned_on_4_classes',
|
| 289 |
interactive=True,
|
| 290 |
)
|
| 291 |
model_loading_status = gr.Textbox(label="Model Loading Status")
|