Update app.py
Browse files
app.py
CHANGED
@@ -248,7 +248,7 @@ with gr.Blocks(css=css) as demo:
|
|
248 |
|
249 |
|
250 |
with gr.Column(scale=2):
|
251 |
-
image_output = gr.Image(
|
252 |
|
253 |
text_button.click(txt2img, inputs=[prompt, negative_prompt, model, steps, sampler, cfg_scale, width, height, seed], outputs=image_output)
|
254 |
|
@@ -287,7 +287,7 @@ with gr.Blocks(css=css) as demo:
|
|
287 |
|
288 |
|
289 |
with gr.Column(scale=2):
|
290 |
-
i2i_image_output = gr.Image(
|
291 |
|
292 |
i2i_text_button.click(img2img, inputs=[i2i_image_input, i2i_denoising, i2i_prompt, i2i_negative_prompt, model, i2i_steps, i2i_sampler, i2i_cfg_scale, i2i_width, i2i_height, i2i_seed], outputs=i2i_image_output)
|
293 |
demo.queue(concurrency_count=64, max_size=80, api_open=False).launch(max_threads=256)
|
|
|
248 |
|
249 |
|
250 |
with gr.Column(scale=2):
|
251 |
+
image_output = gr.Image()
|
252 |
|
253 |
text_button.click(txt2img, inputs=[prompt, negative_prompt, model, steps, sampler, cfg_scale, width, height, seed], outputs=image_output)
|
254 |
|
|
|
287 |
|
288 |
|
289 |
with gr.Column(scale=2):
|
290 |
+
i2i_image_output = gr.Image()
|
291 |
|
292 |
i2i_text_button.click(img2img, inputs=[i2i_image_input, i2i_denoising, i2i_prompt, i2i_negative_prompt, model, i2i_steps, i2i_sampler, i2i_cfg_scale, i2i_width, i2i_height, i2i_seed], outputs=i2i_image_output)
|
293 |
demo.queue(concurrency_count=64, max_size=80, api_open=False).launch(max_threads=256)
|