Update ui_utils.py
Browse files- ui_utils.py +1 -1
ui_utils.py
CHANGED
@@ -14,7 +14,7 @@ def gradio_inputs_for_MD_DLC(md_models_list, # list(MD_models_dict.keys())
|
|
14 |
type='value', # Type of value to be returned by component. "value" returns the string of the choice selected, "index" returns the index of the choice selected.
|
15 |
label='Select MegaDetector model')
|
16 |
gr_dlc_model_input = gr.inputs.Dropdown(choices=dlc_models_list, # choices
|
17 |
-
default='
|
18 |
type='value', # Type of value to be returned by component. "value" returns the string of the choice selected, "index" returns the index of the choice selected.
|
19 |
label='Select DeepLabCut model')
|
20 |
|
|
|
14 |
type='value', # Type of value to be returned by component. "value" returns the string of the choice selected, "index" returns the index of the choice selected.
|
15 |
label='Select MegaDetector model')
|
16 |
gr_dlc_model_input = gr.inputs.Dropdown(choices=dlc_models_list, # choices
|
17 |
+
default='superanimal_quadruped', # default option
|
18 |
type='value', # Type of value to be returned by component. "value" returns the string of the choice selected, "index" returns the index of the choice selected.
|
19 |
label='Select DeepLabCut model')
|
20 |
|