geyongtao commited on
Commit
af4447d
1 Parent(s): 65f7944

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -89,14 +89,18 @@ def process(normal_image, prompt, negative_prompt, num_steps, controlnet_conditi
89
 
90
 
91
  def run_demo():
92
- block = gr.Blocks().queue()
 
 
 
93
 
94
  with block:
95
  gr.Markdown("## Surface Normal ControlNet ")
96
  gr.HTML('''
97
  <p style="margin-bottom: 10px; font-size: 94%">
98
  This is a demo for Surface Normal ControlNet that using
99
- <a href="https://huggingface.co/geyongtao/HumanWild" target="_blank"> HumanWild model</a> as backbone.
 
100
  </p>
101
  ''')
102
  with gr.Row():
 
89
 
90
 
91
  def run_demo():
92
+
93
+ _TITLE = '''3D Human Reconstruction in the Wild with Synthetic Data Using Generative Models'''
94
+
95
+ block = gr.Blocks(title=_TITLE).queue()
96
 
97
  with block:
98
  gr.Markdown("## Surface Normal ControlNet ")
99
  gr.HTML('''
100
  <p style="margin-bottom: 10px; font-size: 94%">
101
  This is a demo for Surface Normal ControlNet that using
102
+ <a href="https://huggingface.co/geyongtao/HumanWild" target="_blank"> HumanWild model</a> pretrained weight.
103
+ <a style="display:inline-block; margin-left: .5em" href='https://github.com/YongtaoGe/WildHuman/'><img src='https://img.shields.io/github/stars/YongtaoGe/WildHuman?style=social' /></a>
104
  </p>
105
  ''')
106
  with gr.Row():