Spaces:
Runtime error
Runtime error
VinayHajare
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -40,8 +40,8 @@ with gr.Blocks(css=css) as app:
|
|
40 |
image_output2 = gr.Image(type="pil", format = "jpeg", label="Generated Image 2")
|
41 |
|
42 |
with gr.Column():
|
43 |
-
image_output3 = gr.Image(type="pil", label="Generated Image 3")
|
44 |
-
image_output4 = gr.Image(type="pil", label="Generated Image 4")
|
45 |
|
46 |
generate_button.click(generate_image_from_text, inputs=[text_prompt], outputs=[image_output1, image_output2, image_output3, image_output4])
|
47 |
|
|
|
40 |
image_output2 = gr.Image(type="pil", format = "jpeg", label="Generated Image 2")
|
41 |
|
42 |
with gr.Column():
|
43 |
+
image_output3 = gr.Image(type="pil", format = "jpeg", label="Generated Image 3")
|
44 |
+
image_output4 = gr.Image(type="pil", format = "jpeg", label="Generated Image 4")
|
45 |
|
46 |
generate_button.click(generate_image_from_text, inputs=[text_prompt], outputs=[image_output1, image_output2, image_output3, image_output4])
|
47 |
|