Spaces:
Running
on
Zero
Running
on
Zero
Upload app.py
Browse files
app.py
CHANGED
|
@@ -66,9 +66,14 @@ def create_gradio_interface():
|
|
| 66 |
example_images = [
|
| 67 |
os.path.join("files", "image", f"{i}.png") for i in range(1, 9)
|
| 68 |
]
|
|
|
|
|
|
|
|
|
|
|
|
|
| 69 |
|
| 70 |
with gr.Blocks() as demo:
|
| 71 |
-
gr.Markdown(
|
|
|
|
| 72 |
with gr.Row():
|
| 73 |
with gr.Column():
|
| 74 |
input_image = gr.Image(label="Input Image", type="numpy")
|
|
|
|
| 66 |
example_images = [
|
| 67 |
os.path.join("files", "image", f"{i}.png") for i in range(1, 9)
|
| 68 |
]
|
| 69 |
+
title = "# Dereflection Any Image"
|
| 70 |
+
description = """Official demo for **Dereflection Any Image**.
|
| 71 |
+
Please refer to our [paper](), [project page](https://abuuu122.github.io/DAI.github.io/), and [github](https://github.com/Abuuu122/Dereflection-Any-Image) for more details."""
|
| 72 |
+
|
| 73 |
|
| 74 |
with gr.Blocks() as demo:
|
| 75 |
+
gr.Markdown(title)
|
| 76 |
+
gr.Markdown(description)
|
| 77 |
with gr.Row():
|
| 78 |
with gr.Column():
|
| 79 |
input_image = gr.Image(label="Input Image", type="numpy")
|