Spaces:
Runtime error
Runtime error
update readme
Browse files
README.md
CHANGED
@@ -1,13 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
-
title: LucidDreamer
|
3 |
-
emoji: 👁
|
4 |
-
colorFrom: pink
|
5 |
-
colorTo: yellow
|
6 |
-
sdk: gradio
|
7 |
-
sdk_version: 4.7.1
|
8 |
-
app_file: app.py
|
9 |
-
pinned: false
|
10 |
-
license: mit
|
11 |
-
---
|
12 |
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# LucidDreamer: Towards High-Fidelity Text-to-3D Generation via Interval Score Matching
|
2 |
+
|
3 |
+
[Yixun Liang](https://yixunliang.github.io/)$^{\color{red}{\*}}$ [Xin Yang](https://abnervictor.github.io/2023/06/12/Academic-Self-Intro.html)$^{\color{red}{\*}}$, [Jiantao Lin](https://ltt-o.github.io/), [Haodong Li](https://haodong-li.com/), [Xiaogang Xu](https://xiaogang00.github.io), [Yingcong Chen](https://www.yingcong.me)$^{\**}$
|
4 |
+
|
5 |
+
$\color{red}{\*}$: Equal contribution.
|
6 |
+
\**: Corresponding author.
|
7 |
+
|
8 |
+
[Paper PDF (Arxiv)](https://arxiv.org/abs/2311.11284) | [Project Page (Coming Soon)]()
|
9 |
+
|
10 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
+
<div align=center>
|
13 |
+
<img src="resources/gif/demo-1.gif" width="47.5%"/><img src="resources/gif/demo-2.gif" width="47.5%"/>
|
14 |
+
|
15 |
+
Note: we compress these motion pictures for faster previewing.
|
16 |
+
</div>
|
17 |
+
|
18 |
+
<div align=center>
|
19 |
+
<img src="resources/teaser.jpg" width="95%"/>
|
20 |
+
|
21 |
+
Examples of text-to-3D content creations with our framework, the *LucidDreamer*, within **~35mins** on A100.
|
22 |
+
</div>
|
23 |
+
|
24 |
+
|
25 |
+
## 🎏 Abstract
|
26 |
+
|
27 |
+
We present a text-to-3D generation framework, named the *LucidDreamer*, to distill high-fidelity textures and shapes from pretrained 2D diffusion models.
|
28 |
+
|
29 |
+
<details><summary>CLICK for the full abstract</summary>
|
30 |
+
|
31 |
+
> The recent advancements in text-to-3D generation mark a significant milestone in generative models, unlocking new possibilities for creating imaginative 3D assets across various real-world scenarios. While recent advancements in text-to-3D generation have shown promise, they often fall short in rendering detailed and high-quality 3D models. This problem is especially prevalent as many methods base themselves on Score Distillation Sampling (SDS). This paper identifies a notable deficiency in SDS, that it brings inconsistent and low-quality updating direction for the 3D model, causing the over-smoothing effect. To address this, we propose a novel approach called Interval Score Matching (ISM). ISM employs deterministic diffusing trajectories and utilizes interval-based score matching to counteract over-smoothing. Furthermore, we incorporate 3D Gaussian Splatting into our text-to-3D generation pipeline. Extensive experiments show that our model largely outperforms the state-of-the-art in quality and training efficiency.
|
32 |
+
|
33 |
+
</details>
|
34 |
+
|
35 |
+
## 🔧 Training Instructions
|
36 |
+
|
37 |
+
Our code is now released! Please refer to this [**link**](resources/Training_Instructions.md) for detailed training instructions.
|
38 |
+
|
39 |
+
## 🚧 Todo
|
40 |
+
|
41 |
+
- [x] Release the basic training codes
|
42 |
+
- [x] Release the guidance documents
|
43 |
+
- [ ] Release the training codes for more applications
|
44 |
+
|
45 |
+
|
46 |
+
## 📍 Citation
|
47 |
+
```
|
48 |
+
@misc{EnVision2023luciddreamer,
|
49 |
+
title={LucidDreamer: Towards High-Fidelity Text-to-3D Generation via Interval Score Matching},
|
50 |
+
author={Yixun Liang and Xin Yang and Jiantao Lin and Haodong Li and Xiaogang Xu and Yingcong Chen},
|
51 |
+
year={2023},
|
52 |
+
eprint={2311.11284},
|
53 |
+
archivePrefix={arXiv},
|
54 |
+
primaryClass={cs.CV}
|
55 |
+
}
|
56 |
+
```
|
57 |
+
|
58 |
+
## Acknowledgement
|
59 |
+
This work is built on many amazing research works and open-source projects:
|
60 |
+
- [gaussian-splatting](https://github.com/graphdeco-inria/gaussian-splatting) and [diff-gaussian-rasterization](https://github.com/graphdeco-inria/diff-gaussian-rasterization)
|
61 |
+
- [Stable-Dreamfusion](https://github.com/ashawkey/stable-dreamfusion)
|
62 |
+
- [Point-E](https://github.com/openai/point-e)
|
63 |
+
|
64 |
+
Thanks for their excellent work and great contribution to 3D generation area.
|