Huiwenshi commited on
Commit
4edbfb8
β€’
1 Parent(s): 338b330

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +31 -15
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://3d.hunyuan.tencent.com/hunyuan3d.pdf)
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
- We recommend python3.9 and CUDA11.7+
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/spaces/tencent/Hunyuan3D-1](https://huggingface.co/spaces/tencent/Hunyuan3D-1):
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
- <!-- ## Citation
178
 
179
  If you found this repository helpful, please cite our report:
180
  ```bibtex
181
- @misc{xxx_todo,
182
- title={Hunyuan3D-1.0: First Unified Framework for Text-to-3D and Image-to-3D Generation},
183
- author={},
184
- year={2024},
185
- eprint={},
186
- archivePrefix={arXiv},
187
- primaryClass={cs.CV}
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
+ ```