Update app.py
Browse files
app.py
CHANGED
|
@@ -484,12 +484,13 @@ with gr.Blocks(delete_cache=(3600, 10800)) as demo:
|
|
| 484 |
quality_slider = gr.Slider(minimum=1, maximum=10, step=1, value=6, label="Video Quality")
|
| 485 |
seed_input = gr.Slider(label="Seed", minimum=0, maximum=MAX_SEED, step=1, value=42, interactive=True)
|
| 486 |
randomize_seed_checkbox = gr.Checkbox(label="Randomize seed", value=True, interactive=True)
|
| 487 |
-
guidance_scale_input = gr.Slider(minimum=0.0, maximum=10.0, step=0.5, value=1, label="Guidance Scale")
|
| 488 |
-
guidance_scale_2_input = gr.Slider(minimum=0.0, maximum=10.0, step=0.5, value=1, label="Guidance Scale 2")
|
| 489 |
scheduler_dropdown = gr.Dropdown(
|
| 490 |
label="Scheduler",
|
| 491 |
choices=list(SCHEDULER_MAP.keys()),
|
| 492 |
-
value="UniPCMultistep"
|
|
|
|
| 493 |
)
|
| 494 |
flow_shift_slider = gr.Slider(minimum=0.5, maximum=15.0, step=0.1, value=3.0, label="Flow Shift")
|
| 495 |
|
|
|
|
| 484 |
quality_slider = gr.Slider(minimum=1, maximum=10, step=1, value=6, label="Video Quality")
|
| 485 |
seed_input = gr.Slider(label="Seed", minimum=0, maximum=MAX_SEED, step=1, value=42, interactive=True)
|
| 486 |
randomize_seed_checkbox = gr.Checkbox(label="Randomize seed", value=True, interactive=True)
|
| 487 |
+
guidance_scale_input = gr.Slider(minimum=0.0, maximum=10.0, step=0.5, value=1, label="Guidance Scale - high noise stage")
|
| 488 |
+
guidance_scale_2_input = gr.Slider(minimum=0.0, maximum=10.0, step=0.5, value=1, label="Guidance Scale 2 - low noise stage")
|
| 489 |
scheduler_dropdown = gr.Dropdown(
|
| 490 |
label="Scheduler",
|
| 491 |
choices=list(SCHEDULER_MAP.keys()),
|
| 492 |
+
value="UniPCMultistep",
|
| 493 |
+
info="Select a custom scheduler."
|
| 494 |
)
|
| 495 |
flow_shift_slider = gr.Slider(minimum=0.5, maximum=15.0, step=0.1, value=3.0, label="Flow Shift")
|
| 496 |
|