Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -21,6 +21,6 @@ with gr.Blocks() as demo:
|
|
21 |
with gr.Column():
|
22 |
output_img = gr.Image(streaming=True)
|
23 |
input_img.stream(predict_pose, input_img, output_img,
|
24 |
-
time_limit=30, stream_every=
|
25 |
|
26 |
-
demo.launch()
|
|
|
21 |
with gr.Column():
|
22 |
output_img = gr.Image(streaming=True)
|
23 |
input_img.stream(predict_pose, input_img, output_img,
|
24 |
+
time_limit=30, stream_every=0.5, concurrency_limit=30)
|
25 |
|
26 |
+
demo.launch(debug=True)
|