Spaces:
Sleeping
Sleeping
Jagrut Thakare commited on
Commit ·
3955aee
1
Parent(s): d85026f
v2 - Added Negative prompt Support
Browse files
app.py
CHANGED
|
@@ -72,7 +72,7 @@ with gr.Blocks() as app:
|
|
| 72 |
steps = gr.Slider(label="Steps", minimum=1, maximum=100, step=1, value=example_steps)
|
| 73 |
width = gr.Slider(label="Width", minimum=256, maximum=1536, step=64, value=example_width)
|
| 74 |
height = gr.Slider(label="Height", minimum=256, maximum=1536, step=64, value=example_height)
|
| 75 |
-
randomize_seed = gr.Checkbox(
|
| 76 |
seed = gr.Slider(label="Seed", minimum=0, maximum=MAX_SEED, step=1, value=example_seed)
|
| 77 |
lora_scale = gr.Slider(label="LoRA Scale", minimum=0, maximum=1, step=0.01, value=example_lora_scale)
|
| 78 |
with gr.Column(scale=1):
|
|
|
|
| 72 |
steps = gr.Slider(label="Steps", minimum=1, maximum=100, step=1, value=example_steps)
|
| 73 |
width = gr.Slider(label="Width", minimum=256, maximum=1536, step=64, value=example_width)
|
| 74 |
height = gr.Slider(label="Height", minimum=256, maximum=1536, step=64, value=example_height)
|
| 75 |
+
randomize_seed = gr.Checkbox(True, label="Randomize seed")
|
| 76 |
seed = gr.Slider(label="Seed", minimum=0, maximum=MAX_SEED, step=1, value=example_seed)
|
| 77 |
lora_scale = gr.Slider(label="LoRA Scale", minimum=0, maximum=1, step=0.01, value=example_lora_scale)
|
| 78 |
with gr.Column(scale=1):
|