Spaces:
Runtime error
Runtime error
OmParkashPandeY
commited on
Commit
•
65863c1
1
Parent(s):
e3e79df
Update app.py
Browse files
app.py
CHANGED
@@ -62,9 +62,9 @@ def loadGUI():
|
|
62 |
negative_prompt = gr.Textbox(label="Negative prompt")
|
63 |
with gr.Row():
|
64 |
with gr.Column():
|
65 |
-
steps = gr.Slider(label="Inference Steps", minimum=1, maximum=100, step=
|
66 |
info="In many steps will the denoiser denoise the image?")
|
67 |
-
guidance = gr.Slider(label="Guidance Scale", minimum=1, maximum=20, step=
|
68 |
info="Controls how much the text prompt influences the result")
|
69 |
with gr.Column():
|
70 |
width = gr.Slider(label="Width", minimum=64, maximum=1024, step=32, value=512)
|
|
|
62 |
negative_prompt = gr.Textbox(label="Negative prompt")
|
63 |
with gr.Row():
|
64 |
with gr.Column():
|
65 |
+
steps = gr.Slider(label="Inference Steps", minimum=1, maximum=100, step=1, value=25,
|
66 |
info="In many steps will the denoiser denoise the image?")
|
67 |
+
guidance = gr.Slider(label="Guidance Scale", minimum=1, maximum=20, step=1, value=7,
|
68 |
info="Controls how much the text prompt influences the result")
|
69 |
with gr.Column():
|
70 |
width = gr.Slider(label="Width", minimum=64, maximum=1024, step=32, value=512)
|