Spaces:
Sleeping
Sleeping
AlekseyCalvin
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -167,12 +167,12 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as app:
|
|
167 |
with gr.Accordion("Advanced Settings", open=True):
|
168 |
with gr.Column():
|
169 |
with gr.Row():
|
170 |
-
cfg_scale = gr.Slider(label="CFG Scale", minimum=0, maximum=20, step=0.5, value=
|
171 |
-
steps = gr.Slider(label="Steps", minimum=1, maximum=50, step=1, value=
|
172 |
|
173 |
with gr.Row():
|
174 |
-
width = gr.Slider(label="Width", minimum=256, maximum=1536, step=64, value=
|
175 |
-
height = gr.Slider(label="Height", minimum=256, maximum=1536, step=64, value=
|
176 |
|
177 |
with gr.Row():
|
178 |
randomize_seed = gr.Checkbox(True, label="Randomize seed")
|
|
|
167 |
with gr.Accordion("Advanced Settings", open=True):
|
168 |
with gr.Column():
|
169 |
with gr.Row():
|
170 |
+
cfg_scale = gr.Slider(label="CFG Scale", minimum=0, maximum=20, step=0.5, value=1.0)
|
171 |
+
steps = gr.Slider(label="Steps", minimum=1, maximum=50, step=1, value=12)
|
172 |
|
173 |
with gr.Row():
|
174 |
+
width = gr.Slider(label="Width", minimum=256, maximum=1536, step=64, value=1152)
|
175 |
+
height = gr.Slider(label="Height", minimum=256, maximum=1536, step=64, value=1088)
|
176 |
|
177 |
with gr.Row():
|
178 |
randomize_seed = gr.Checkbox(True, label="Randomize seed")
|