Spaces:
Running
Running
add header with title (#1)
Browse files- add header with title (fa0bdf42dd8f5b998c1333e239094cc3ce9e1a77)
Co-authored-by: Radamés Ajna <[email protected]>
app.py
CHANGED
@@ -60,7 +60,17 @@ def synthesis(data):
|
|
60 |
return data
|
61 |
|
62 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
with gr.Blocks() as demo:
|
|
|
64 |
gr.HTML(
|
65 |
"""<iframe src="/GenMM_demo/" width="100%" height="700px" style="border:none;">"""
|
66 |
)
|
|
|
60 |
return data
|
61 |
|
62 |
|
63 |
+
intro = """
|
64 |
+
<h1 style="text-align: center;">
|
65 |
+
Example-based Motion Synthesis via Generative Motion Matching
|
66 |
+
</h1>
|
67 |
+
<h3 style="text-align: center; margin-bottom: 7px;">
|
68 |
+
<a href="http://weiyuli.xyz/GenMM" target="_blank">Project Page</a> | <a href="https://huggingface.co/papers/2306.00378" target="_blank">Paper</a> | <a href="https://github.com/wyysf-98/GenMM" target="_blank">Code</a>
|
69 |
+
</h3>
|
70 |
+
"""
|
71 |
+
|
72 |
with gr.Blocks() as demo:
|
73 |
+
gr.HTML(intro)
|
74 |
gr.HTML(
|
75 |
"""<iframe src="/GenMM_demo/" width="100%" height="700px" style="border:none;">"""
|
76 |
)
|