Update app.py
Browse files
app.py
CHANGED
@@ -548,10 +548,10 @@ with gr.Blocks(css=css, delete_cache=(60, 60)) as app:
|
|
548 |
# with gr.Row():
|
549 |
# input_image = gr.Image(label="Input image", type="filepath", show_share_button=False)
|
550 |
# image_strength = gr.Slider(label="Denoise Strength", info="Lower means more image influence", minimum=0.1, maximum=1.0, step=0.01, value=0.75)
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
|
556 |
with gr.Row():
|
557 |
width = gr.Slider(label="Width", minimum=256, maximum=1536, step=64, value=1024)
|
|
|
548 |
# with gr.Row():
|
549 |
# input_image = gr.Image(label="Input image", type="filepath", show_share_button=False)
|
550 |
# image_strength = gr.Slider(label="Denoise Strength", info="Lower means more image influence", minimum=0.1, maximum=1.0, step=0.01, value=0.75)
|
551 |
+
with gr.Column():
|
552 |
+
with gr.Row():
|
553 |
+
cfg_scale = gr.Slider(label="CFG Scale", minimum=1, maximum=20, step=0.5, value=3.5)
|
554 |
+
steps = gr.Slider(label="Steps", minimum=1, maximum=50, step=1, value=28)
|
555 |
|
556 |
with gr.Row():
|
557 |
width = gr.Slider(label="Width", minimum=256, maximum=1536, step=64, value=1024)
|