Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
62151c5
1
Parent(s):
01b6a16
simplify description in UI
Browse files
app.py
CHANGED
@@ -51,25 +51,9 @@ important_link = r"""
|
|
51 |
</div>
|
52 |
"""
|
53 |
|
54 |
-
authors = r"""
|
55 |
-
<div align='center'>
|
56 |
-
<a href='https://github.com/Luo-Yihang'>Yihang Luo</a>
|
57 |
-
  <a href='https://shangchenzhou.com/'>Shangchen Zhou</a>
|
58 |
-
  <a href='https://nirvanalan.github.io/'>Yushi Lan</a>
|
59 |
-
  <a href='https://xingangpan.github.io/'>Xingang Pan</a>
|
60 |
-
  <a href='https://www.mmlab-ntu.com/person/ccloy/index.html'>Chen Change Loy</a>
|
61 |
-
</div>
|
62 |
-
"""
|
63 |
-
|
64 |
-
affiliation = r"""
|
65 |
-
<div align='center'>
|
66 |
-
<a href='https://www.mmlab-ntu.com/'>S-Lab, NTU Singapore</a>
|
67 |
-
</div>
|
68 |
-
"""
|
69 |
-
|
70 |
description = r"""
|
71 |
<b>Official Gradio demo</b> for <a href='https://yihangluo.com/projects/3DEnhancer' target='_blank'><b>3DEnhancer: Consistent Multi-View Diffusion for 3D Enhancement</b></a>.<br>
|
72 |
-
🔥 3DEnhancer employs a multi-view diffusion model to enhance multi-view images, thus improving 3D models
|
73 |
"""
|
74 |
|
75 |
article = r"""
|
@@ -429,8 +413,6 @@ mv_examples = [
|
|
429 |
demo = gr.Blocks().queue()
|
430 |
with demo:
|
431 |
gr.Markdown(title)
|
432 |
-
gr.Markdown(authors)
|
433 |
-
gr.Markdown(affiliation)
|
434 |
gr.Markdown(important_link)
|
435 |
gr.Markdown(description)
|
436 |
|
|
|
51 |
</div>
|
52 |
"""
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
description = r"""
|
55 |
<b>Official Gradio demo</b> for <a href='https://yihangluo.com/projects/3DEnhancer' target='_blank'><b>3DEnhancer: Consistent Multi-View Diffusion for 3D Enhancement</b></a>.<br>
|
56 |
+
🔥 3DEnhancer employs a multi-view diffusion model to enhance multi-view images, thus improving 3D models.<br>
|
57 |
"""
|
58 |
|
59 |
article = r"""
|
|
|
413 |
demo = gr.Blocks().queue()
|
414 |
with demo:
|
415 |
gr.Markdown(title)
|
|
|
|
|
416 |
gr.Markdown(important_link)
|
417 |
gr.Markdown(description)
|
418 |
|