Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,3 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<!-- ## **Hunyuan3D-1.0** -->
|
2 |
|
3 |
<p align="center">
|
@@ -8,7 +17,7 @@
|
|
8 |
|
9 |
[\[Code\]](https://github.com/tencent/Hunyuan3D-1)
|
10 |
[\[Huggingface\]](https://huggingface.co/tencent/Hunyuan3D-1)
|
11 |
-
[\[Report\]](https://
|
12 |
|
13 |
|
14 |
## π₯π₯π₯ News!!
|
@@ -72,16 +81,23 @@ cd Hunyuan3D-1
|
|
72 |
|
73 |
We provide an env_install.sh script file for setting up environment.
|
74 |
|
75 |
-
|
76 |
```
|
77 |
-
conda create -n hunyuan3d-1 python=3.9
|
78 |
-
conda activate hunyuan3d-1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
bash env_install.sh
|
80 |
```
|
81 |
-
|
82 |
#### Download Pretrained Models
|
83 |
|
84 |
-
The models are available at [https://huggingface.co/
|
85 |
|
86 |
+ `Hunyuan3D-1/lite`, lite model for multi-view generation.
|
87 |
+ `Hunyuan3D-1/std`, standard model for multi-view generation.
|
@@ -174,16 +190,16 @@ Output views are a fixed set of camera poses:
|
|
174 |
+ Azimuth (relative to input view): `+0, +60, +120, +180, +240, +300`.
|
175 |
|
176 |
|
177 |
-
|
178 |
|
179 |
If you found this repository helpful, please cite our report:
|
180 |
```bibtex
|
181 |
-
@misc{
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
}
|
189 |
-
```
|
|
|
1 |
+
---
|
2 |
+
library_name: hunyuan3d-1.0
|
3 |
+
license: other
|
4 |
+
license_name: tencent-hunyuan-community
|
5 |
+
license_link: https://huggingface.co/tencent/Hunyuan3D-1/blob/main/LICENSE.txt
|
6 |
+
language:
|
7 |
+
- en
|
8 |
+
- zh
|
9 |
+
---
|
10 |
<!-- ## **Hunyuan3D-1.0** -->
|
11 |
|
12 |
<p align="center">
|
|
|
17 |
|
18 |
[\[Code\]](https://github.com/tencent/Hunyuan3D-1)
|
19 |
[\[Huggingface\]](https://huggingface.co/tencent/Hunyuan3D-1)
|
20 |
+
[\[Report\]](https://arxiv.org/pdf/2411.02293)
|
21 |
|
22 |
|
23 |
## π₯π₯π₯ News!!
|
|
|
81 |
|
82 |
We provide an env_install.sh script file for setting up environment.
|
83 |
|
84 |
+
python3.9 and CUDA11.7+ (recommended)
|
85 |
```
|
86 |
+
conda create -n hunyuan3d-1-py39 python=3.9
|
87 |
+
conda activate hunyuan3d-1-py39
|
88 |
+
pip install torch==2.2.0 torchvision==0.17.0 --index-url https://download.pytorch.org/whl/cu118
|
89 |
+
bash env_install.sh
|
90 |
+
```
|
91 |
+
or python3.11 and CUDA12.1+ see [link](https://github.com/Tencent/Hunyuan3D-1/issues/9#issuecomment-2458695670)
|
92 |
+
```
|
93 |
+
conda create -n hunyuan3d-1-py311 python=3.11
|
94 |
+
conda activate hunyuan3d-1-py311
|
95 |
+
pip install torch torchvision xformers --index-url https://download.pytorch.org/whl/cu121
|
96 |
bash env_install.sh
|
97 |
```
|
|
|
98 |
#### Download Pretrained Models
|
99 |
|
100 |
+
The models are available at [https://huggingface.co/tencent/Hunyuan3D-1](https://huggingface.co/tencent/Hunyuan3D-1):
|
101 |
|
102 |
+ `Hunyuan3D-1/lite`, lite model for multi-view generation.
|
103 |
+ `Hunyuan3D-1/std`, standard model for multi-view generation.
|
|
|
190 |
+ Azimuth (relative to input view): `+0, +60, +120, +180, +240, +300`.
|
191 |
|
192 |
|
193 |
+
## Citation
|
194 |
|
195 |
If you found this repository helpful, please cite our report:
|
196 |
```bibtex
|
197 |
+
@misc{yang2024tencent,
|
198 |
+
title={Tencent Hunyuan3D-1.0: A Unified Framework for Text-to-3D and Image-to-3D Generation},
|
199 |
+
author={Xianghui Yang and Huiwen Shi and Bowen Zhang and Fan Yang and Jiacheng Wang and Hongxu Zhao and Xinhai Liu and Xinzhou Wang and Qingxiang Lin and Jiaao Yu and Lifu Wang and Zhuo Chen and Sicong Liu and Yuhong Liu and Yong Yang and Di Wang and Jie Jiang and Chunchao Guo},
|
200 |
+
year={2024},
|
201 |
+
eprint={2411.02293},
|
202 |
+
archivePrefix={arXiv},
|
203 |
+
primaryClass={cs.CV}
|
204 |
}
|
205 |
+
```
|