Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -252,6 +252,16 @@ with gr.Blocks(css="style.css") as demo:
|
|
| 252 |
with gr.Group():
|
| 253 |
with gr.Row():
|
| 254 |
use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=False, visible=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 255 |
num_imgs = gr.Slider(
|
| 256 |
label="Num Images",
|
| 257 |
minimum=1,
|
|
|
|
| 252 |
with gr.Group():
|
| 253 |
with gr.Row():
|
| 254 |
use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=False, visible=True)
|
| 255 |
+
with gr.Row(visible=True):
|
| 256 |
+
schedule = gr.Radio(
|
| 257 |
+
show_label=True,
|
| 258 |
+
container=True,
|
| 259 |
+
interactive=True,
|
| 260 |
+
choices=SCHEDULE_NAME,
|
| 261 |
+
value=DEFAULT_SCHEDULE_NAME,
|
| 262 |
+
label="Sampler Schedule",
|
| 263 |
+
visible=True,
|
| 264 |
+
)
|
| 265 |
num_imgs = gr.Slider(
|
| 266 |
label="Num Images",
|
| 267 |
minimum=1,
|