KumaPower commited on
Commit
ef43984
·
verified ·
1 Parent(s): 54b9df7

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -944,14 +944,16 @@ def launch_gradio_app():
944
  label="CFG Scale"
945
  )
946
  strength_slider = gr.Slider(
947
- minimum=0.5, maximum=0.85, value=0.75, step=0.05,
948
  label="SDEdit Strength"
949
  )
950
  style_button = gr.Button("🎨 Apply Style", interactive=False, elem_id="style_generate", variant='primary')
951
  gr.Markdown(
952
- "⬅️ Please click **Process Image** first. "
953
- "**Apply Style** will transform the image in the **Processed Image** panel "
954
- "according to the selected style."
 
 
955
  )
956
 
957
 
 
944
  label="CFG Scale"
945
  )
946
  strength_slider = gr.Slider(
947
+ minimum=0.45, maximum=0.75, value=0.6, step=0.05,
948
  label="SDEdit Strength"
949
  )
950
  style_button = gr.Button("🎨 Apply Style", interactive=False, elem_id="style_generate", variant='primary')
951
  gr.Markdown(
952
+ """
953
+ ⚠️ **Please click 'Process Image' first.** Then use **Apply Style** to stylize the image.
954
+ `SDEdit Strength`: Higher values make the result closer to the target style; lower values preserve more of the original face.
955
+ Try to keep facial features recognizable — avoid excessive distortion.
956
+ """
957
  )
958
 
959