justinpinkney commited on
Commit
968fb8d
1 Parent(s): f8604b5

fix slider bug

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -173,7 +173,7 @@ with block:
173
 
174
  with gr.Row(elem_id="advanced-options"):
175
  samples = gr.Slider(label="Images", minimum=1, maximum=4, value=2, step=1)
176
- steps = gr.Slider(label="Steps", minimum=1, maximum=50, value=25, step=1)
177
  scale = gr.Slider(
178
  label="Guidance Scale", minimum=0, maximum=50, value=7.5, step=0.1
179
  )
@@ -195,6 +195,7 @@ with block:
195
  <p> Put in a text prompt and generate your own Pokémon character, no "prompt engineering" required!
196
  <p>If you want to find out how we made this model read about it in <a href="https://lambdalabs.com/blog/how-to-fine-tune-stable-diffusion-how-we-made-the-text-to-pokemon-model-at-lambda/">this blog post</a>.
197
  <p>And if you want to train your own Stable Diffusion variants, see our <a href="https://github.com/LambdaLabsML/examples/tree/main/stable-diffusion-finetuning">Examples Repo</a>!
 
198
  </div>
199
  """
200
  )
 
173
 
174
  with gr.Row(elem_id="advanced-options"):
175
  samples = gr.Slider(label="Images", minimum=1, maximum=4, value=2, step=1)
176
+ steps = gr.Slider(label="Steps", minimum=5, maximum=50, value=25, step=5)
177
  scale = gr.Slider(
178
  label="Guidance Scale", minimum=0, maximum=50, value=7.5, step=0.1
179
  )
 
195
  <p> Put in a text prompt and generate your own Pokémon character, no "prompt engineering" required!
196
  <p>If you want to find out how we made this model read about it in <a href="https://lambdalabs.com/blog/how-to-fine-tune-stable-diffusion-how-we-made-the-text-to-pokemon-model-at-lambda/">this blog post</a>.
197
  <p>And if you want to train your own Stable Diffusion variants, see our <a href="https://github.com/LambdaLabsML/examples/tree/main/stable-diffusion-finetuning">Examples Repo</a>!
198
+ <p>Trained by <a href="justinpinkney.com">Justin Pinkney</a> (<a href="https://twitter.com/Buntworthy">@Buntworthy</a>) at <a href="https://lambdalabs.com/">Lambda Labs</a>.</p>
199
  </div>
200
  """
201
  )