Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -326,7 +326,6 @@ with gr.Blocks() as demo:
|
|
326 |
500
|
327 |
],
|
328 |
]
|
329 |
-
demo.queue(max_size=10, concurrency_count=2)
|
330 |
gr.Examples(examples=examples,
|
331 |
inputs=[
|
332 |
semantic_concept,
|
@@ -359,7 +358,7 @@ with gr.Blocks() as demo:
|
|
359 |
result2
|
360 |
]
|
361 |
|
362 |
-
run.click(fn=run_main_app, inputs=inputs, outputs=outputs,
|
363 |
|
364 |
|
365 |
demo.launch(share=False)
|
|
|
326 |
500
|
327 |
],
|
328 |
]
|
|
|
329 |
gr.Examples(examples=examples,
|
330 |
inputs=[
|
331 |
semantic_concept,
|
|
|
358 |
result2
|
359 |
]
|
360 |
|
361 |
+
run.click(fn=run_main_app, inputs=inputs, outputs=outputs, concurrency_limit=2)
|
362 |
|
363 |
|
364 |
demo.launch(share=False)
|