ford442 commited on
Commit
54992f8
·
verified ·
1 Parent(s): dd49f77

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -869,7 +869,7 @@ with gr.Blocks(css=css) as demo:
869
  randomize_seed_input = gr.Checkbox(label="Randomize Seed", value=True)
870
 
871
  with gr.Row(visible=True): # <-- MODIFIED
872
- guidance_scale_input = gr.Slider(label="Guidance Scale (CFG)", minimum=1.0, maximum=10.0, value=PIPELINE_CONFIG_YAML.get("first_pass", {}).get("guidance_scale", 1.0), step=0.1)
873
 
874
  with gr.Row():
875
  height_input = gr.Slider(label="Height", value=1024, step=32, minimum=32, maximum=MAX_IMAGE_SIZE);
 
869
  randomize_seed_input = gr.Checkbox(label="Randomize Seed", value=True)
870
 
871
  with gr.Row(visible=True): # <-- MODIFIED
872
+ guidance_scale_input = gr.Slider(label="Guidance Scale (CFG)", minimum=0.1, maximum=10.0, value=PIPELINE_CONFIG_YAML.get("first_pass", {}).get("guidance_scale", 1.0), step=0.1)
873
 
874
  with gr.Row():
875
  height_input = gr.Slider(label="Height", value=1024, step=32, minimum=32, maximum=MAX_IMAGE_SIZE);