Spaces:
Sleeping
Sleeping
fix: sliders info
Browse files
app.py
CHANGED
|
@@ -177,8 +177,8 @@ with gr.Blocks(css=css) as demo:
|
|
| 177 |
model_type = gr.Dropdown(["FLUX", "SD3"], label="Model Type", value="FLUX")
|
| 178 |
T_steps = gr.Slider(value=15, minimum=10, maximum=50, step=1, label="Total Steps", info="Total number of discretization steps.")
|
| 179 |
n_max = gr.Slider(value=13, minimum=1, maximum=15, step=1, label="n_max", info="Control the strength of the edit.")
|
| 180 |
-
eta = gr.Slider(value=0.0025, minimum=0.0001, maximum=0.05, label="eta", info="Control the optimization step-size.")
|
| 181 |
-
flowopt_iterations = gr.Number(value=8, minimum=1, maximum=15, label="flowopt_iterations", info="Max number of FlowOpt iterations")
|
| 182 |
|
| 183 |
with gr.Column():
|
| 184 |
image_tar = gr.Gallery(
|
|
|
|
| 177 |
model_type = gr.Dropdown(["FLUX", "SD3"], label="Model Type", value="FLUX")
|
| 178 |
T_steps = gr.Slider(value=15, minimum=10, maximum=50, step=1, label="Total Steps", info="Total number of discretization steps.")
|
| 179 |
n_max = gr.Slider(value=13, minimum=1, maximum=15, step=1, label="n_max", info="Control the strength of the edit.")
|
| 180 |
+
eta = gr.Slider(value=0.0025, minimum=0.0001, maximum=0.05, label="eta", info="Control the optimization step-size (η).")
|
| 181 |
+
flowopt_iterations = gr.Number(value=8, minimum=1, maximum=15, label="flowopt_iterations", info="Max number of FlowOpt iterations (N).")
|
| 182 |
|
| 183 |
with gr.Column():
|
| 184 |
image_tar = gr.Gallery(
|