Spaces:
Running
on
Zero
Running
on
Zero
Add disclaimer
Browse files
app.py
CHANGED
|
@@ -378,12 +378,12 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
| 378 |
)
|
| 379 |
|
| 380 |
detection_interval = gr.Slider(
|
| 381 |
-
minimum=
|
| 382 |
maximum=30,
|
| 383 |
-
value=
|
| 384 |
step=5,
|
| 385 |
label="Detection Interval (frames)",
|
| 386 |
-
info="Run detection every N frames (
|
| 387 |
)
|
| 388 |
|
| 389 |
process_video_btn = gr.Button(value="Process Video", variant="primary")
|
|
|
|
| 378 |
)
|
| 379 |
|
| 380 |
detection_interval = gr.Slider(
|
| 381 |
+
minimum=10,
|
| 382 |
maximum=30,
|
| 383 |
+
value=15,
|
| 384 |
step=5,
|
| 385 |
label="Detection Interval (frames)",
|
| 386 |
+
info="Run detection every N frames (less is slower but more accurate, ZeroGPU might time out with long videos)"
|
| 387 |
)
|
| 388 |
|
| 389 |
process_video_btn = gr.Button(value="Process Video", variant="primary")
|