Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse files- gradio_demo/gradio_demo.py +9 -0
- requirements.txt +1 -1
gradio_demo/gradio_demo.py
CHANGED
|
@@ -535,9 +535,18 @@ def main():
|
|
| 535 |
generate_mvs = functools.partial(run_eschernet, tmpdirname)
|
| 536 |
|
| 537 |
_HEADER_ = '''
|
|
|
|
|
|
|
|
|
|
| 538 |
'''
|
| 539 |
|
| 540 |
_CITE_ = r"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 541 |
"""
|
| 542 |
|
| 543 |
with gr.Blocks() as demo:
|
|
|
|
| 535 |
generate_mvs = functools.partial(run_eschernet, tmpdirname)
|
| 536 |
|
| 537 |
_HEADER_ = '''
|
| 538 |
+
<h2><b>[CVPR'24 Oral] EscherNet: A Generative Model for Scalable View Synthesis</b></h2>
|
| 539 |
+
EscherNet is a multiview diffusion model for scalable generative any-to-any number/pose novel view synthesis.
|
| 540 |
+
Project: <a href='https://kxhit.github.io/EscherNet' Code: <a href='https://github.com/kxhit/EscherNet' target='_blank'>GitHub</a>. Paper: <a href='https://arxiv.org/abs/2402.03908' target='_blank'>ArXiv</a>.
|
| 541 |
'''
|
| 542 |
|
| 543 |
_CITE_ = r"""
|
| 544 |
+
@article{kong2024eschernet,
|
| 545 |
+
title={EscherNet: A Generative Model for Scalable View Synthesis},
|
| 546 |
+
author={Kong, Xin and Liu, Shikun and Lyu, Xiaoyang and Taher, Marwan and Qi, Xiaojuan and Davison, Andrew J},
|
| 547 |
+
journal={arXiv preprint arXiv:2402.03908},
|
| 548 |
+
year={2024}
|
| 549 |
+
}
|
| 550 |
"""
|
| 551 |
|
| 552 |
with gr.Blocks() as demo:
|
requirements.txt
CHANGED
|
@@ -266,7 +266,7 @@ Werkzeug==2.2.3
|
|
| 266 |
widgetsnbextension==4.0.8
|
| 267 |
wrapt==1.15.0
|
| 268 |
xatlas==0.0.8
|
| 269 |
-
xformers
|
| 270 |
xxhash==3.2.0
|
| 271 |
yarl==1.9.2
|
| 272 |
zipp==3.16.2
|
|
|
|
| 266 |
widgetsnbextension==4.0.8
|
| 267 |
wrapt==1.15.0
|
| 268 |
xatlas==0.0.8
|
| 269 |
+
xformers>=0.0.19
|
| 270 |
xxhash==3.2.0
|
| 271 |
yarl==1.9.2
|
| 272 |
zipp==3.16.2
|