Update app.py
Browse files
app.py
CHANGED
@@ -80,9 +80,35 @@ def yaml_to_box(yaml_file):
|
|
80 |
|
81 |
return Box(yaml_data)
|
82 |
|
83 |
-
HEAD = """<div class="embed_hidden">
|
84 |
-
<h1
|
85 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
|
87 |
edit_config = yaml_to_box('options/edit.yaml')
|
88 |
os.environ['GRADIO_TEMP_DIR'] = 'tmp'
|
|
|
80 |
|
81 |
return Box(yaml_data)
|
82 |
|
83 |
+
HEAD = ("""<div class="embed_hidden" style="text-align: center;">
|
84 |
+
<h1>MotionCLR: Motion Generation and Training-free Editing via Understanding Attention Mechanisms</h1>
|
85 |
+
<h3>
|
86 |
+
<a href="https://lhchen.top" target="_blank" rel="noopener noreferrer">Ling-Hao Chen</a><sup>1, 2</sup>,
|
87 |
+
<a href="https://shunlinlu.github.io" target="_blank" rel="noopener noreferrer">Wenxun Dai</a><sup>2</sup>,
|
88 |
+
<a href="https://shunlinlu.github.io" target="_blank" rel="noopener noreferrer">Xuan Ju</a><sup>3</sup>,
|
89 |
+
<a href="https://shunlinlu.github.io" target="_blank" rel="noopener noreferrer">Shunlin Lu</a><sup>4</sup>,
|
90 |
+
<a href="https://leizhang.org" target="_blank" rel="noopener noreferrer">Lei Zhang</a><sup>🤗 1</sup>
|
91 |
+
</h3>
|
92 |
+
<h3><sup>🤗</sup><i>Corresponding author.</i></h3>
|
93 |
+
<h3>
|
94 |
+
<sup>1</sup>THU  
|
95 |
+
<sup>2</sup>IDEA Research  
|
96 |
+
<sup>3</sup>CUHK  
|
97 |
+
<sup>4</sup>CUHK (SZ)
|
98 |
+
</h3>
|
99 |
+
</div>
|
100 |
+
<div style="display:flex; gap: 0.3rem; justify-content: center; align-items: center;" align="center">
|
101 |
+
<a href='https://arxiv.org/abs/2405.20340'><img src='https://img.shields.io/badge/Arxiv-2405.20340-A42C25?style=flat&logo=arXiv&logoColor=A42C25'></a>
|
102 |
+
<a href='https://arxiv.org/pdf/2405.20340.pdf'><img src='https://img.shields.io/badge/Paper-PDF-yellow?style=flat&logo=arXiv&logoColor=yellow'></a>
|
103 |
+
<a href='https://lhchen.top/MotionCLR'><img src='https://img.shields.io/badge/Project-Page-%23df5b46?style=flat&logo=Google%20chrome&logoColor=%23df5b46'></a>
|
104 |
+
<a href='https://research.lhchen.top/blogpost/motionclr'><img src='https://img.shields.io/badge/Blog-post-4EABE6?style=flat&logoColor=4EABE6'></a>
|
105 |
+
<a href='https://github.com/IDEA-Research/MotionCLR'><img src='https://img.shields.io/badge/GitHub-Code-black?style=flat&logo=github&logoColor=white'></a>
|
106 |
+
<a href='https://huggingface.co/spaces/EvanTHU/MotionCLR'><img src='https://img.shields.io/badge/gradio-demo-red.svg'></a>
|
107 |
+
<a href='LICENSE'><img src='https://img.shields.io/badge/License-IDEA-blue.svg'></a>
|
108 |
+
<a href="https://huggingface.co/spaces/EvanTHU/MotionCLR" target='_blank'><img src="https://visitor-badge.laobi.icu/badge?page_id=IDEA-Research.MotionCLR&left_color=gray&right_color=%2342b983"></a>
|
109 |
+
</div>
|
110 |
+
""")
|
111 |
+
|
112 |
|
113 |
edit_config = yaml_to_box('options/edit.yaml')
|
114 |
os.environ['GRADIO_TEMP_DIR'] = 'tmp'
|