radames commited on
Commit
fa0bdf4
1 Parent(s): 27763e5

add header with title

Browse files
Files changed (1) hide show
  1. app.py +10 -0
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
  )