Update app.py
Browse files
app.py
CHANGED
|
@@ -77,6 +77,26 @@ def generate(input_video):
|
|
| 77 |
|
| 78 |
with gr.Blocks() as demo:
|
| 79 |
with gr.Column():
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
with gr.Row():
|
| 81 |
with gr.Column():
|
| 82 |
input_video = gr.Video(label="Input Video")
|
|
@@ -87,7 +107,8 @@ with gr.Blocks() as demo:
|
|
| 87 |
|
| 88 |
gr.Examples(
|
| 89 |
examples = video_examples,
|
| 90 |
-
inputs = [input_video]
|
|
|
|
| 91 |
)
|
| 92 |
|
| 93 |
submit_btn.click(
|
|
|
|
| 77 |
|
| 78 |
with gr.Blocks() as demo:
|
| 79 |
with gr.Column():
|
| 80 |
+
gr.Markdown("# L4GM: Large 4D Gaussian Reconstruction Model")
|
| 81 |
+
gr.HTML("""
|
| 82 |
+
<div style="display:flex;column-gap:4px;">
|
| 83 |
+
<a href="https://github.com/nv-tlabs/L4GM-official/tree/main">
|
| 84 |
+
<img src='https://img.shields.io/badge/GitHub-Repo-blue'>
|
| 85 |
+
</a>
|
| 86 |
+
<a href="https://research.nvidia.com/labs/toronto-ai/l4gm/">
|
| 87 |
+
<img src='https://img.shields.io/badge/Project-Page-green'>
|
| 88 |
+
</a>
|
| 89 |
+
<a href="https://arxiv.org/abs/2406.10324">
|
| 90 |
+
<img src='https://img.shields.io/badge/ArXiv-Paper-red'>
|
| 91 |
+
</a>
|
| 92 |
+
<a href="https://huggingface.co/spaces/fffiloni/L4GM-demo?duplicate=true">
|
| 93 |
+
<img src="https://huggingface.co/datasets/huggingface/badges/resolve/main/duplicate-this-space-sm.svg" alt="Duplicate this Space">
|
| 94 |
+
</a>
|
| 95 |
+
<a href="https://huggingface.co/fffiloni">
|
| 96 |
+
<img src="https://huggingface.co/datasets/huggingface/badges/resolve/main/follow-me-on-HF-sm-dark.svg" alt="Follow me on HF">
|
| 97 |
+
</a>
|
| 98 |
+
</div>
|
| 99 |
+
""")
|
| 100 |
with gr.Row():
|
| 101 |
with gr.Column():
|
| 102 |
input_video = gr.Video(label="Input Video")
|
|
|
|
| 107 |
|
| 108 |
gr.Examples(
|
| 109 |
examples = video_examples,
|
| 110 |
+
inputs = [input_video],
|
| 111 |
+
examples_per_page = 3
|
| 112 |
)
|
| 113 |
|
| 114 |
submit_btn.click(
|