Spaces:
Build error
Build error
Pie31415
commited on
Commit
·
57885e4
1
Parent(s):
efcc1a9
updated layout
Browse files
app.py
CHANGED
|
@@ -134,6 +134,15 @@ def video_inference():
|
|
| 134 |
with gr.Blocks() as demo:
|
| 135 |
gr.Markdown("# **<p align='center'>ROME: Realistic one-shot mesh-based head avatars</p>**")
|
| 136 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 137 |
with gr.Tab("Image Inference"):
|
| 138 |
with gr.Row():
|
| 139 |
source_img = gr.Image(type="pil", label="source image", show_label=True)
|
|
|
|
| 134 |
with gr.Blocks() as demo:
|
| 135 |
gr.Markdown("# **<p align='center'>ROME: Realistic one-shot mesh-based head avatars</p>**")
|
| 136 |
|
| 137 |
+
gr.Markdown(
|
| 138 |
+
"""
|
| 139 |
+
<p style='text-align: center'>
|
| 140 |
+
Create a personal avatar from just a single image using ROME.
|
| 141 |
+
<br> <a href='https://arxiv.org/abs/2206.08343' target='_blank'>Paper</a> | <a href='https://samsunglabs.github.io/rome' target='_blank'>Project Page</a> | <a href='https://github.com/SamsungLabs/rome' target='_blank'>Github</a>
|
| 142 |
+
</p>
|
| 143 |
+
"""
|
| 144 |
+
)
|
| 145 |
+
|
| 146 |
with gr.Tab("Image Inference"):
|
| 147 |
with gr.Row():
|
| 148 |
source_img = gr.Image(type="pil", label="source image", show_label=True)
|