Spaces:
Runtime error
Runtime error
Commit
·
7f669e6
1
Parent(s):
a6c43f6
Update app.py
Browse files
app.py
CHANGED
@@ -154,16 +154,13 @@ with gr.Blocks(css=css) as demo:
|
|
154 |
])
|
155 |
|
156 |
with gr.Column(scale=1):
|
157 |
-
steps = gr.Slider(label="Steps", minimum=1, maximum=50, value=
|
158 |
|
159 |
with gr.Row():
|
160 |
with gr.Column(scale=1):
|
161 |
width = gr.Slider(label="Width", maximum=1024, value=512, step=8)
|
162 |
height = gr.Slider(label="Height", maximum=1024, value=512, step=8)
|
163 |
|
164 |
-
with gr.Column(scale=1):
|
165 |
-
batch_size = gr.Slider(label="Batch Size", maximum=1, value=1)
|
166 |
-
batch_count = gr.Slider(label="Batch Count", maximum=1, value=1)
|
167 |
|
168 |
cfg_scale = gr.Slider(label="CFG Scale", minimum=1, maximum=20, value=7, step=1)
|
169 |
seed = gr.Number(label="Seed", value=-1, info = """'-1' is a random seed""")
|
|
|
154 |
])
|
155 |
|
156 |
with gr.Column(scale=1):
|
157 |
+
steps = gr.Slider(label="Steps", minimum=1, maximum=50, value=30, step=1)
|
158 |
|
159 |
with gr.Row():
|
160 |
with gr.Column(scale=1):
|
161 |
width = gr.Slider(label="Width", maximum=1024, value=512, step=8)
|
162 |
height = gr.Slider(label="Height", maximum=1024, value=512, step=8)
|
163 |
|
|
|
|
|
|
|
164 |
|
165 |
cfg_scale = gr.Slider(label="CFG Scale", minimum=1, maximum=20, value=7, step=1)
|
166 |
seed = gr.Number(label="Seed", value=-1, info = """'-1' is a random seed""")
|