AlekseyCalvin commited on
Commit
7dd891a
1 Parent(s): 2cbe354

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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=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")
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.12)
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,