Spaces:
Sleeping
Sleeping
AlekseyCalvin
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -167,17 +167,17 @@ 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=12)
|
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=1088)
|
176 |
|
177 |
with gr.Row():
|
178 |
randomize_seed = gr.Checkbox(True, label="Randomize seed")
|
179 |
seed = gr.Slider(label="Seed", minimum=0, maximum=MAX_SEED, step=1, value=0, randomize=True)
|
180 |
-
lora_scale = gr.Slider(label="LoRA Scale", minimum=0, maximum=2.0, step=0.01, value=1.
|
181 |
|
182 |
gallery.select(
|
183 |
update_selection,
|
|
|
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=3.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=1024)
|
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")
|
179 |
seed = gr.Slider(label="Seed", minimum=0, maximum=MAX_SEED, step=1, value=0, randomize=True)
|
180 |
+
lora_scale = gr.Slider(label="LoRA Scale", minimum=0, maximum=2.0, step=0.01, value=1.05)
|
181 |
|
182 |
gallery.select(
|
183 |
update_selection,
|