annayding
commited on
Commit
·
c032acd
1
Parent(s):
703d0c4
changed default
Browse files
app.py
CHANGED
@@ -69,14 +69,14 @@ with gr.Blocks() as demo:
|
|
69 |
info="Adjust the frame detection rate. I.e. a value of 120 will run detection every 120 frames, a value of 1 will run detection on every frame. Note: the lower the number the slower the processing time.",
|
70 |
minimum=1,
|
71 |
maximum=120,
|
72 |
-
value=
|
73 |
step=1)
|
74 |
scaling_factor = gr.Slider(
|
75 |
label="Downsample Factor",
|
76 |
info="Adjust the downsample factor. Note: the higher the number the faster the processing time but lower the accuracy.",
|
77 |
minimum=1,
|
78 |
maximum=5,
|
79 |
-
value=
|
80 |
step=1
|
81 |
)
|
82 |
|
|
|
69 |
info="Adjust the frame detection rate. I.e. a value of 120 will run detection every 120 frames, a value of 1 will run detection on every frame. Note: the lower the number the slower the processing time.",
|
70 |
minimum=1,
|
71 |
maximum=120,
|
72 |
+
value=1,
|
73 |
step=1)
|
74 |
scaling_factor = gr.Slider(
|
75 |
label="Downsample Factor",
|
76 |
info="Adjust the downsample factor. Note: the higher the number the faster the processing time but lower the accuracy.",
|
77 |
minimum=1,
|
78 |
maximum=5,
|
79 |
+
value=4,
|
80 |
step=1
|
81 |
)
|
82 |
|