DamarJati commited on
Commit
247708e
·
verified ·
1 Parent(s): debcb05

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -270,7 +270,7 @@ with gr.Blocks(css= "style.css") as app:
270
  with gr.Row():
271
  with gr.Column():
272
  # Konfigurasi
273
- scheduler_input = gr.Dropdown(choices=["Euler", "LMS", "DDIM"], label="Sampling method")
274
  num_steps_input = gr.Slider(minimum=1, maximum=100, step=1, label="Sampling steps", value=20)
275
  width_input = gr.Slider(minimum=128, maximum=2048, step=128, label="Width", value=512)
276
  height_input = gr.Slider(minimum=128, maximum=2048, step=128, label="Height", value=512)
 
270
  with gr.Row():
271
  with gr.Column():
272
  # Konfigurasi
273
+ scheduler_input = gr.Dropdown(choices=schedulers, label="Sampling method", value=schedulers[0])
274
  num_steps_input = gr.Slider(minimum=1, maximum=100, step=1, label="Sampling steps", value=20)
275
  width_input = gr.Slider(minimum=128, maximum=2048, step=128, label="Width", value=512)
276
  height_input = gr.Slider(minimum=128, maximum=2048, step=128, label="Height", value=512)