Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -147,7 +147,7 @@ with gr.Blocks(css="""
|
|
| 147 |
youtube_input = gr.Textbox(label="YouTube Link", placeholder="https://...")
|
| 148 |
with gr.TabItem("Image URL"):
|
| 149 |
image_url_input = gr.Textbox(label="Image URL", placeholder="https://...")
|
| 150 |
-
sensitivity_slider = gr.Slider(minimum=0.
|
| 151 |
label="Sensitivity (Confidence Threshold)")
|
| 152 |
# Right Column: Results display at the top.
|
| 153 |
with gr.Column(scale=2):
|
|
|
|
| 147 |
youtube_input = gr.Textbox(label="YouTube Link", placeholder="https://...")
|
| 148 |
with gr.TabItem("Image URL"):
|
| 149 |
image_url_input = gr.Textbox(label="Image URL", placeholder="https://...")
|
| 150 |
+
sensitivity_slider = gr.Slider(minimum=0.0, maximum=1.0, step=0.01, value=0.5,
|
| 151 |
label="Sensitivity (Confidence Threshold)")
|
| 152 |
# Right Column: Results display at the top.
|
| 153 |
with gr.Column(scale=2):
|