Update app.py
Browse files
app.py
CHANGED
|
@@ -158,7 +158,7 @@ def remove_objects(image, object_name, guidance_scale, steps):
|
|
| 158 |
# Create Gradio interface
|
| 159 |
with gr.Blocks(
|
| 160 |
fill_height=True,
|
| 161 |
-
title="Professional Object Removal
|
| 162 |
theme=gr.themes.Soft()
|
| 163 |
) as demo:
|
| 164 |
|
|
@@ -204,7 +204,7 @@ with gr.Blocks(
|
|
| 204 |
maximum=10.0,
|
| 205 |
value=2.5,
|
| 206 |
step=0.1,
|
| 207 |
-
label="🎯
|
| 208 |
info="Higher = more faithful to prompt, lower = more creative"
|
| 209 |
)
|
| 210 |
|
|
@@ -213,7 +213,7 @@ with gr.Blocks(
|
|
| 213 |
maximum=50,
|
| 214 |
value=28,
|
| 215 |
step=2,
|
| 216 |
-
label="🔄
|
| 217 |
info="More steps = higher quality but slower processing"
|
| 218 |
)
|
| 219 |
|
|
|
|
| 158 |
# Create Gradio interface
|
| 159 |
with gr.Blocks(
|
| 160 |
fill_height=True,
|
| 161 |
+
title="Professional Object Removal",
|
| 162 |
theme=gr.themes.Soft()
|
| 163 |
) as demo:
|
| 164 |
|
|
|
|
| 204 |
maximum=10.0,
|
| 205 |
value=2.5,
|
| 206 |
step=0.1,
|
| 207 |
+
label="🎯 Guidance Scale",
|
| 208 |
info="Higher = more faithful to prompt, lower = more creative"
|
| 209 |
)
|
| 210 |
|
|
|
|
| 213 |
maximum=50,
|
| 214 |
value=28,
|
| 215 |
step=2,
|
| 216 |
+
label="🔄 Steps",
|
| 217 |
info="More steps = higher quality but slower processing"
|
| 218 |
)
|
| 219 |
|