Spaces:
Running
Running
commit
Browse files
app.py
CHANGED
@@ -240,9 +240,10 @@ def run_demo_server():
|
|
240 |
) as demo:
|
241 |
selected_points = gr.State([]) # store points
|
242 |
original_image = gr.State(value=None) # store original image without points, default None
|
243 |
-
gr.
|
244 |
"""
|
245 |
-
|
|
|
246 |
<p align="center">
|
247 |
<a title="arXiv" href="https://arxiv.org" target="_blank" rel="noopener noreferrer"
|
248 |
style="display: inline-block;">
|
@@ -250,13 +251,11 @@ def run_demo_server():
|
|
250 |
</a>
|
251 |
<a title="Github" href="https://github.com/aim-uofa/Diception" target="_blank" rel="noopener noreferrer"
|
252 |
style="display: inline-block;">
|
253 |
-
<img src="https://img.shields.io/github/stars/aim-uofa/
|
254 |
alt="badge-github-stars">
|
255 |
</a>
|
256 |
</p>
|
257 |
-
|
258 |
-
One single model solves multiple perception tasks, producing impressive results!
|
259 |
-
</p>
|
260 |
"""
|
261 |
)
|
262 |
|
|
|
240 |
) as demo:
|
241 |
selected_points = gr.State([]) # store points
|
242 |
original_image = gr.State(value=None) # store original image without points, default None
|
243 |
+
gr.HTML(
|
244 |
"""
|
245 |
+
<h1>DICEPTION: A Generalist Diffusion Model for Vision Perception</h1>
|
246 |
+
<h3>One single model solves multiple perception tasks, producing impressive results!</h3>
|
247 |
<p align="center">
|
248 |
<a title="arXiv" href="https://arxiv.org" target="_blank" rel="noopener noreferrer"
|
249 |
style="display: inline-block;">
|
|
|
251 |
</a>
|
252 |
<a title="Github" href="https://github.com/aim-uofa/Diception" target="_blank" rel="noopener noreferrer"
|
253 |
style="display: inline-block;">
|
254 |
+
<img src="https://img.shields.io/github/stars/aim-uofa/Diception?label=GitHub%20%E2%98%85&logo=github&color=C8C"
|
255 |
alt="badge-github-stars">
|
256 |
</a>
|
257 |
</p>
|
258 |
+
|
|
|
|
|
259 |
"""
|
260 |
)
|
261 |
|