max_size=10 in queue
Browse files
app.py
CHANGED
@@ -65,7 +65,7 @@ DESCRIPTION = """
|
|
65 |
This is a demo of https://github.com/InstantStyle/InstantStyle.
|
66 |
"""
|
67 |
|
68 |
-
block = gr.Blocks(css="footer {visibility: hidden}").queue()
|
69 |
with block:
|
70 |
with gr.Row():
|
71 |
|
@@ -91,7 +91,7 @@ with block:
|
|
91 |
generate_button.click(fn=create_image, inputs=[image_pil,target,prompt,n_prompt,scale, guidance_scale,num_samples,num_inference_steps,seed],
|
92 |
outputs=[generated_image])
|
93 |
|
94 |
-
block.launch(
|
95 |
|
96 |
|
97 |
|
|
|
65 |
This is a demo of https://github.com/InstantStyle/InstantStyle.
|
66 |
"""
|
67 |
|
68 |
+
block = gr.Blocks(css="footer {visibility: hidden}").queue(max_size=10)
|
69 |
with block:
|
70 |
with gr.Row():
|
71 |
|
|
|
91 |
generate_button.click(fn=create_image, inputs=[image_pil,target,prompt,n_prompt,scale, guidance_scale,num_samples,num_inference_steps,seed],
|
92 |
outputs=[generated_image])
|
93 |
|
94 |
+
block.launch()
|
95 |
|
96 |
|
97 |
|