Spaces:
Runtime error
Runtime error
ehristoforu
commited on
Commit
•
34165e8
1
Parent(s):
793adf9
Update app.py
Browse files
app.py
CHANGED
@@ -168,7 +168,7 @@ with gr.Blocks(css=css, theme="Base") as demo:
|
|
168 |
batch_count = gr.Slider(label="Batch Count", maximum=1, value=1)
|
169 |
|
170 |
cfg_scale = gr.Slider(label="CFG Scale", minimum=1, maximum=20, value=7, step=1)
|
171 |
-
seed = gr.
|
172 |
|
173 |
|
174 |
text_button.click(flip_text, inputs=[prompt, negative_prompt, model, steps, sampler, cfg_scale, width, height, seed], outputs=image_output)
|
|
|
168 |
batch_count = gr.Slider(label="Batch Count", maximum=1, value=1)
|
169 |
|
170 |
cfg_scale = gr.Slider(label="CFG Scale", minimum=1, maximum=20, value=7, step=1)
|
171 |
+
seed = gr.Slider(label="Seed", maximum=4294967295, minimum = -1, value=-1, step=1, info="""'-1' is random seed""")
|
172 |
|
173 |
|
174 |
text_button.click(flip_text, inputs=[prompt, negative_prompt, model, steps, sampler, cfg_scale, width, height, seed], outputs=image_output)
|