Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -78,7 +78,7 @@ with gr.Blocks() as app:
|
|
78 |
steps = gr.Slider(label="Steps", minimum=1, maximum=100, step=1, value=example_steps)
|
79 |
width = gr.Slider(label="Width", minimum=256, maximum=1536, step=64, value=example_width)
|
80 |
height = gr.Slider(label="Height", minimum=256, maximum=1536, step=64, value=example_height)
|
81 |
-
randomize_seed = gr.Checkbox(
|
82 |
seed = gr.Slider(label="Seed", minimum=0, maximum=MAX_SEED, step=1, value=example_seed)
|
83 |
lora_scale = gr.Slider(label="LoRA Scale", minimum=0, maximum=1, step=0.01, value=example_lora_scale)
|
84 |
with gr.Column(scale=1):
|
|
|
78 |
steps = gr.Slider(label="Steps", minimum=1, maximum=100, step=1, value=example_steps)
|
79 |
width = gr.Slider(label="Width", minimum=256, maximum=1536, step=64, value=example_width)
|
80 |
height = gr.Slider(label="Height", minimum=256, maximum=1536, step=64, value=example_height)
|
81 |
+
randomize_seed = gr.Checkbox(True, label="Randomize seed")
|
82 |
seed = gr.Slider(label="Seed", minimum=0, maximum=MAX_SEED, step=1, value=example_seed)
|
83 |
lora_scale = gr.Slider(label="LoRA Scale", minimum=0, maximum=1, step=0.01, value=example_lora_scale)
|
84 |
with gr.Column(scale=1):
|