tianxingxu commited on
Commit
e5ab32f
·
1 Parent(s): d68bce6
Files changed (1) hide show
  1. app.py +23 -5
app.py CHANGED
@@ -1,7 +1,25 @@
1
  import gradio as gr
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
5
-
6
- demo = gr.Interface(fn=greet, inputs="text", outputs="text")
7
- demo.launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
 
3
+ with gr.Blocks(analytics_enabled=False) as gradio_demo:
4
+ gr.Markdown(
5
+ """
6
+ <div align='center'>
7
+ <h1> GeometryCrafter: Consistent Geometry Estimation for Open-world Videos with Diffusion Priors </h1> \
8
+ <h2 style='font-weight: 450; font-size: 1rem; margin: 0rem'>\
9
+ <a href='https://scholar.google.com/citations?user=zHp0rMIAAAAJ'>Tian-Xing Xu</a>, \
10
+ <a href='https://scholar.google.com/citations?user=qgdesEcAAAAJ'>Xiangjun Gao</a>, \
11
+ <a href='https://wbhu.github.io'>Wenbo Hu</a>, \
12
+ <a href='https://xiaoyu258.github.io/'>Xiaoyu Li</a>, \
13
+ <a href='https://scholar.google.com/citations?user=AWtV-EQAAAAJ'>Song-Hai Zhang</a>,\
14
+ <a href='https://scholar.google.com/citations?user=4oXBp9UAAAAJ'>Ying Shan</a>\
15
+ </h2> \
16
+ <span style='font-size:18px'>If you find GeometryCrafter useful, please help ⭐ the \
17
+ <a style='font-size:18px' href='https://github.com/TencentARC/GeometryCrafter/'>[Github Repo]</a>\
18
+ , which is important to Open-Source projects. Thanks!\
19
+ <a style='font-size:18px' href='https://arxiv.org'> [ArXivTODO] </a>\
20
+ <a style='font-size:18px' href='https://geometrycrafter.github.io'> [Project Page] </a>
21
+ </span>
22
+ </div>
23
+ """
24
+ )
25
+ gradio_demo.launch(share=True)