Spaces:
Runtime error
Runtime error
Commit
•
716ced7
1
Parent(s):
747b988
Update app.py
Browse files
app.py
CHANGED
@@ -99,13 +99,13 @@ def ui():
|
|
99 |
prompt = gr.Textbox(label=strings['prompt'], value=strings['default prompt'], lines=3)
|
100 |
with gr.Row():
|
101 |
infer_steps = gr.Slider(
|
102 |
-
label=strings['infer steps'], minimum=1, maximum=200, value=
|
103 |
)
|
104 |
seed = gr.Number(
|
105 |
label=strings['seed'], minimum=-1, maximum=1_000_000_000, value=1, step=1, precision=0,
|
106 |
)
|
107 |
enhance = gr.Checkbox(
|
108 |
-
label=strings['enhance'], value=
|
109 |
)
|
110 |
|
111 |
with gr.Accordion(
|
|
|
99 |
prompt = gr.Textbox(label=strings['prompt'], value=strings['default prompt'], lines=3)
|
100 |
with gr.Row():
|
101 |
infer_steps = gr.Slider(
|
102 |
+
label=strings['infer steps'], minimum=1, maximum=200, value=40, step=1,
|
103 |
)
|
104 |
seed = gr.Number(
|
105 |
label=strings['seed'], minimum=-1, maximum=1_000_000_000, value=1, step=1, precision=0,
|
106 |
)
|
107 |
enhance = gr.Checkbox(
|
108 |
+
label=strings['enhance'], value=False, interactive=True,
|
109 |
)
|
110 |
|
111 |
with gr.Accordion(
|