Spaces:
Running
on
Zero
Running
on
Zero
gradio
Browse files
app.py
CHANGED
|
@@ -273,25 +273,6 @@ if __name__ == "__main__":
|
|
| 273 |
with gr.Blocks(css=css_code, theme=gr.themes.Base()) as app:
|
| 274 |
gr.Markdown("# 🥸 Advance Blur")
|
| 275 |
|
| 276 |
-
with gr.Row(max_height=500):
|
| 277 |
-
with gr.Column(scale=1, min_width=160):
|
| 278 |
-
gr.Image(
|
| 279 |
-
value="before.jpg",
|
| 280 |
-
label="Before",
|
| 281 |
-
show_label=True,
|
| 282 |
-
interactive=False,
|
| 283 |
-
)
|
| 284 |
-
with gr.Column(scale=1, min_width=160):
|
| 285 |
-
gr.Image(
|
| 286 |
-
value="after.jpg",
|
| 287 |
-
label="After",
|
| 288 |
-
show_label=True,
|
| 289 |
-
interactive=False,
|
| 290 |
-
)
|
| 291 |
-
|
| 292 |
-
with gr.Row():
|
| 293 |
-
gr.HTML("<small>(🔍 zoom if necessary)</small>")
|
| 294 |
-
|
| 295 |
with gr.Accordion("More info", open=False):
|
| 296 |
gr.Markdown(
|
| 297 |
"""
|
|
@@ -323,6 +304,20 @@ if __name__ == "__main__":
|
|
| 323 |
"""
|
| 324 |
)
|
| 325 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 326 |
with gr.Row():
|
| 327 |
with gr.Column():
|
| 328 |
input_image = gr.Image(
|
|
|
|
| 273 |
with gr.Blocks(css=css_code, theme=gr.themes.Base()) as app:
|
| 274 |
gr.Markdown("# 🥸 Advance Blur")
|
| 275 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 276 |
with gr.Accordion("More info", open=False):
|
| 277 |
gr.Markdown(
|
| 278 |
"""
|
|
|
|
| 304 |
"""
|
| 305 |
)
|
| 306 |
|
| 307 |
+
with gr.Row(max_height=500):
|
| 308 |
+
gr.Image(
|
| 309 |
+
value="before.jpg",
|
| 310 |
+
label="Before",
|
| 311 |
+
show_label=True,
|
| 312 |
+
interactive=False,
|
| 313 |
+
)
|
| 314 |
+
gr.Image(
|
| 315 |
+
value="after.jpg",
|
| 316 |
+
label="After",
|
| 317 |
+
show_label=True,
|
| 318 |
+
interactive=False,
|
| 319 |
+
)
|
| 320 |
+
|
| 321 |
with gr.Row():
|
| 322 |
with gr.Column():
|
| 323 |
input_image = gr.Image(
|