Prime Cai commited on
Commit
d6e75d6
·
1 Parent(s): 7c51b7e

fix samples

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -168,9 +168,9 @@ with demo:
168
  gr.Image(type="pil"),
169
  gr.Textbox(lines=2, label="text", info="Could be something as simple as 'this character playing soccer'."),
170
  gr.Checkbox(label="Gemini prompt", value=True, info="Use Gemini to enhance the prompt. This is recommended for most cases, unless you have a specific prompt similar to the examples in mind."),
171
- gr.Slider(minimum=1.0, maximum=6.0, step=0.5, value=3.5, label="guidance scale (tip: start with 3.5, then gradually increase if the consistency is consistently off)"),
172
- gr.Slider(minimum=1.0, maximum=2.0, step=0.05, value=1.0, label="real guidance scale for image (tip: increase if the image is not consistent)"),
173
- gr.Slider(minimum=1.0, maximum=2.0, step=0.05, value=1.0, label="real guidance scale for prompt (tip: increase if the prompt is not consistent)"),
174
  ],
175
  outputs=gr.Image(type="pil"),
176
  # examples=get_samples(),
 
168
  gr.Image(type="pil"),
169
  gr.Textbox(lines=2, label="text", info="Could be something as simple as 'this character playing soccer'."),
170
  gr.Checkbox(label="Gemini prompt", value=True, info="Use Gemini to enhance the prompt. This is recommended for most cases, unless you have a specific prompt similar to the examples in mind."),
171
+ gr.Slider(minimum=1.0, maximum=6.0, step=0.5, value=3.5, label="guidance scale", info="tip: start with 3.5, then gradually increase if the consistency is consistently off"),
172
+ gr.Slider(minimum=1.0, maximum=2.0, step=0.05, value=1.0, label="real guidance scale for image", info="tip: increase if the image is not consistent"),
173
+ gr.Slider(minimum=1.0, maximum=2.0, step=0.05, value=1.0, label="real guidance scale for prompt", info="tip: increase if the prompt is not consistent"),
174
  ],
175
  outputs=gr.Image(type="pil"),
176
  # examples=get_samples(),