Spaces:
Running
on
Zero
Running
on
Zero
fallenshock
commited on
Commit
•
6157d92
1
Parent(s):
b8381d1
Update app.py
Browse files
app.py
CHANGED
@@ -228,10 +228,10 @@ with gr.Blocks(css=css) as demo:
|
|
228 |
|
229 |
with gr.Row():
|
230 |
model_type = gr.Dropdown(["SD3", "FLUX"], label="Model Type", value="SD3")
|
231 |
-
T_steps = gr.Slider(value=50, label="Total Steps", minimum=1, maximum=50)
|
232 |
-
n_max = gr.Slider(minimum=1, maximum=50, value=33, label="n_max", info="control the strength of the edit")
|
233 |
-
src_guidance_scale = gr.Slider(minimum=1.0, maximum=30.0, value=3.5, label="src_guidance_scale")
|
234 |
-
tar_guidance_scale = gr.Slider(minimum=1.0, maximum=30.0, value=13.5, label="tar_guidance_scale")
|
235 |
|
236 |
|
237 |
|
|
|
228 |
|
229 |
with gr.Row():
|
230 |
model_type = gr.Dropdown(["SD3", "FLUX"], label="Model Type", value="SD3")
|
231 |
+
T_steps = gr.Slider(value=50, label="Total Steps", minimum=1, maximum=50, info="total number of discretization steps.")
|
232 |
+
n_max = gr.Slider(minimum=1, maximum=50, value=33, label="n_max", info="control the strength of the edit.")
|
233 |
+
src_guidance_scale = gr.Slider(minimum=1.0, maximum=30.0, value=3.5, label="src_guidance_scale", info="source prompt CFG scale.")
|
234 |
+
tar_guidance_scale = gr.Slider(minimum=1.0, maximum=30.0, value=13.5, label="tar_guidance_scale", info="target prompt CFG scale.")
|
235 |
|
236 |
|
237 |
|