Spaces:
Running
on
Zero
Running
on
Zero
xinjie.wang
commited on
Commit
Β·
187b3a6
1
Parent(s):
6838632
update
Browse files
app.py
CHANGED
|
@@ -71,22 +71,10 @@ def prepare_data():
|
|
| 71 |
|
| 72 |
with gr.Blocks(theme=custom_theme) as demo:
|
| 73 |
gr.Markdown("## DIPO: Dual-State Images Controlled Articulated Object Generation Powered by Diverse Data")
|
| 74 |
-
gr.Markdown(
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
<img alt="π Project Page" src="https://img.shields.io/badge/π-Project_Page-blue">
|
| 79 |
-
</a>
|
| 80 |
-
<a href="https://arxiv.org/abs/2505.20460">
|
| 81 |
-
<img alt="π arXiv" src="https://img.shields.io/badge/π-arXiv-b31b1b">
|
| 82 |
-
</a>
|
| 83 |
-
<a href="https://github.com/RQ-Wu/DIPO">
|
| 84 |
-
<img alt="π» GitHub" src="https://img.shields.io/badge/GitHub-000000?logo=github">
|
| 85 |
-
</a>
|
| 86 |
-
</p>
|
| 87 |
-
"""
|
| 88 |
-
)
|
| 89 |
-
gr.Markdown("Currently, only the articulated object in following categories are supported: Table, Dishwasher, StorageFurniture, Refrigerator, WashingMachine, Microwave, Oven.")
|
| 90 |
|
| 91 |
with gr.Row():
|
| 92 |
with gr.Column(scale=1):
|
|
@@ -102,6 +90,8 @@ with gr.Blocks(theme=custom_theme) as demo:
|
|
| 102 |
|
| 103 |
gr.Examples(
|
| 104 |
examples=[
|
|
|
|
|
|
|
| 105 |
["examples/1.png", "examples/1_open_1.png"],
|
| 106 |
["examples/1.png", "examples/1_open_2.png"],
|
| 107 |
["examples/close1.png", "examples/open1.png"],
|
|
@@ -111,8 +101,6 @@ with gr.Blocks(theme=custom_theme) as demo:
|
|
| 111 |
["examples/close6.png", "examples/open6.png"],
|
| 112 |
["examples/close7.png", "examples/open7.png"],
|
| 113 |
["examples/close8.png", "examples/open8.png"],
|
| 114 |
-
["examples/close9.jpg", "examples/open9.jpg"],
|
| 115 |
-
["examples/close10.png", "examples/open10.png"],
|
| 116 |
["examples/close3.png", "examples/open3.png"],
|
| 117 |
],
|
| 118 |
inputs=[img1_input, img2_input],
|
|
|
|
| 71 |
|
| 72 |
with gr.Blocks(theme=custom_theme) as demo:
|
| 73 |
gr.Markdown("## DIPO: Dual-State Images Controlled Articulated Object Generation Powered by Diverse Data")
|
| 74 |
+
gr.Markdown("""
|
| 75 |
+
[π Project Page](https://rq-wu.github.io/projects/DIPO) | [π arXiv](https://arxiv.org/abs/2505.20460) | [π» GitHub](https://github.com/RQ-Wu/DIPO)
|
| 76 |
+
""")
|
| 77 |
+
gr.Markdown("Currently, only the articulated object in following categories are supported: `Table`, `Dishwasher`, `StorageFurniture`, `Refrigerator`, `WashingMachine`, `Microwave`, `Oven`.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 78 |
|
| 79 |
with gr.Row():
|
| 80 |
with gr.Column(scale=1):
|
|
|
|
| 90 |
|
| 91 |
gr.Examples(
|
| 92 |
examples=[
|
| 93 |
+
["examples/close10.png", "examples/open10.png"],
|
| 94 |
+
["examples/close9.jpg", "examples/open9.jpg"],
|
| 95 |
["examples/1.png", "examples/1_open_1.png"],
|
| 96 |
["examples/1.png", "examples/1_open_2.png"],
|
| 97 |
["examples/close1.png", "examples/open1.png"],
|
|
|
|
| 101 |
["examples/close6.png", "examples/open6.png"],
|
| 102 |
["examples/close7.png", "examples/open7.png"],
|
| 103 |
["examples/close8.png", "examples/open8.png"],
|
|
|
|
|
|
|
| 104 |
["examples/close3.png", "examples/open3.png"],
|
| 105 |
],
|
| 106 |
inputs=[img1_input, img2_input],
|