MaxMilan1
commited on
Commit
·
f0f8ecd
1
Parent(s):
fa0ee64
mlk
Browse files
app.py
CHANGED
@@ -20,7 +20,7 @@ with gr.Blocks(_TITLE) as ShoeGen:
|
|
20 |
prompt = gr.Textbox(lines=3, label="Enter a prompt")
|
21 |
neg_prompt = gr.Textbox(lines=3, label="Enter a negative prompt")
|
22 |
with gr.Column():
|
23 |
-
button_gen = gr.Button(
|
24 |
output = gr.Image(label="Generated Image")
|
25 |
|
26 |
button_gen.click(generate_image, inputs=[prompt, neg_prompt], outputs=output)
|
|
|
20 |
prompt = gr.Textbox(lines=3, label="Enter a prompt")
|
21 |
neg_prompt = gr.Textbox(lines=3, label="Enter a negative prompt")
|
22 |
with gr.Column():
|
23 |
+
button_gen = gr.Button("Generate Image")
|
24 |
output = gr.Image(label="Generated Image")
|
25 |
|
26 |
button_gen.click(generate_image, inputs=[prompt, neg_prompt], outputs=output)
|