Update app.py
Browse files
app.py
CHANGED
|
@@ -26,7 +26,7 @@ with gr.Blocks(css="footer {visibility: hidden !important;}") as demo:
|
|
| 26 |
with gr.Column():
|
| 27 |
prompt = gr.Textbox(label="Your Guidance", value="a beautiful flower")
|
| 28 |
negative = gr.Textbox(label="Avoid (Optional)", value="low-resolution")
|
| 29 |
-
steps = gr.Slider(1, 30, value=13, label="Quality Steps")
|
| 30 |
btn = gr.Button("Generate Image")
|
| 31 |
|
| 32 |
output = gr.Image(label="Result", height=400),
|
|
|
|
| 26 |
with gr.Column():
|
| 27 |
prompt = gr.Textbox(label="Your Guidance", value="a beautiful flower")
|
| 28 |
negative = gr.Textbox(label="Avoid (Optional)", value="low-resolution")
|
| 29 |
+
steps = gr.Slider(1, 30, value=13, label="Quality Steps", visible=False)
|
| 30 |
btn = gr.Button("Generate Image")
|
| 31 |
|
| 32 |
output = gr.Image(label="Result", height=400),
|