Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -128,7 +128,7 @@ with demo:
|
|
128 |
gr.Markdown(title)
|
129 |
gr.Markdown(description)
|
130 |
gr.Markdown(twitter_link)
|
131 |
-
options = gr.Dropdown(choices=models,label='Object Detection Model',show_label=True)
|
132 |
slider_input = gr.Slider(minimum=0.2,maximum=1,value=0.5,step=0.1,label='Prediction Threshold')
|
133 |
|
134 |
with gr.Tabs():
|
|
|
128 |
gr.Markdown(title)
|
129 |
gr.Markdown(description)
|
130 |
gr.Markdown(twitter_link)
|
131 |
+
options = gr.Dropdown(choices=models,label='Object Detection Model',show_label=True,value=models[0])
|
132 |
slider_input = gr.Slider(minimum=0.2,maximum=1,value=0.5,step=0.1,label='Prediction Threshold')
|
133 |
|
134 |
with gr.Tabs():
|