Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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=
|
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)
|