Update app.py
Browse filesSlowly trying changes with newest gradio version
app.py
CHANGED
@@ -124,8 +124,8 @@ with demo:
|
|
124 |
options = gr.Dropdown(choices=models,label='Select Object Detection Model',show_label=True)
|
125 |
slider_input = gr.Slider(minimum=0.2,maximum=1,value=0.7,label='Prediction Threshold')
|
126 |
|
127 |
-
|
128 |
-
|
129 |
|
130 |
with gr.Tabs():
|
131 |
with gr.TabItem('Image URL'):
|
|
|
124 |
options = gr.Dropdown(choices=models,label='Select Object Detection Model',show_label=True)
|
125 |
slider_input = gr.Slider(minimum=0.2,maximum=1,value=0.7,label='Prediction Threshold')
|
126 |
|
127 |
+
output_text1 = gr.Textbox(value="", label="Confidence Values URL")
|
128 |
+
output_text2 = gr.Textbox(value="", label="Confidence Values Upload")
|
129 |
|
130 |
with gr.Tabs():
|
131 |
with gr.TabItem('Image URL'):
|