roman-bachmann commited on
Commit
b2e1f99
·
1 Parent(s): d28c9f5
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -153,9 +153,9 @@ with gr.Blocks(css=css, theme=gr.themes.Base()) as demo:
153
  gr.Markdown(f"""
154
  The FlexTok decoder is a rectified flow model. The following settings control the seed of the initial noise, the number of denoising timesteps, the guidance scale, and whether to perform [Adaptive Projected Guidance](https://arxiv.org/abs/2410.02416) (we recommend enabling it).
155
  """)
156
- seed = gr.Slider(label="Seed", minimum=0, maximum=MAX_SEED, step=1, value=0)
157
  randomize_seed = gr.Checkbox(label="Randomize seed", value=False)
158
- timesteps = gr.Slider(label="Denoising timesteps", minimum=1, maximum=1000, step=1, value=20)
159
  cfg_scale = gr.Slider(label="Guidance Scale", minimum=1.0, maximum=15.0, step=0.1, value=7.5)
160
  perform_norm_guidance = gr.Checkbox(label="Perform Adaptive Projected Guidance", value=True)
161
 
 
153
  gr.Markdown(f"""
154
  The FlexTok decoder is a rectified flow model. The following settings control the seed of the initial noise, the number of denoising timesteps, the guidance scale, and whether to perform [Adaptive Projected Guidance](https://arxiv.org/abs/2410.02416) (we recommend enabling it).
155
  """)
156
+ seed = gr.Slider(label="Seed", minimum=0, maximum=MAX_SEED, step=1, value=1000)
157
  randomize_seed = gr.Checkbox(label="Randomize seed", value=False)
158
+ timesteps = gr.Slider(label="Denoising timesteps", minimum=1, maximum=1000, step=1, value=25)
159
  cfg_scale = gr.Slider(label="Guidance Scale", minimum=1.0, maximum=15.0, step=0.1, value=7.5)
160
  perform_norm_guidance = gr.Checkbox(label="Perform Adaptive Projected Guidance", value=True)
161