andrew3d commited on
Commit
e5aca85
Β·
verified Β·
1 Parent(s): da5f0d9

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -14
README.md CHANGED
@@ -1,14 +1,44 @@
1
- ---
2
- title: Stable3DGen
3
- emoji: 😻
4
- colorFrom: indigo
5
- colorTo: yellow
6
- sdk: gradio
7
- sdk_version: 5.41.1
8
- app_file: app.py
9
- pinned: false
10
- license: mit
11
- short_description: High-fidelity 3D geometry generation from images.
12
- ---
13
-
14
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Stable3DGen
2
+
3
+ ## Installation
4
+ Clone the repo:
5
+ ```bash
6
+ git clone --recursive https://github.com/Stable-X/Stable3DGen.git
7
+ cd Stable3DGen
8
+ ```
9
+
10
+ Create a conda environment (optional):
11
+ ```bash
12
+ conda create -n stablex python=3.10
13
+ conda activate stablex
14
+ ```
15
+
16
+ Install dependencies:
17
+ ```bash
18
+ # pytorch (select correct CUDA version)
19
+ pip install torch==2.4.0 torchvision==0.19.0 --index-url https://download.pytorch.org/whl/{your-cuda-version}
20
+ pip install spconv-cu{your-cuda-version}==2.3.6 xformers==0.0.27.post2
21
+ # other dependencies
22
+ pip install -r requirements.txt
23
+ ```
24
+
25
+ ## Local Demo πŸ€—
26
+ Run by:
27
+ ```bash
28
+ python app.py
29
+ ```
30
+
31
+ <!-- License -->
32
+ ## License
33
+ The model and code of Stable3DGen are adapted from [**Trellis**](https://github.com/microsoft/TRELLIS), which are licensed under the [MIT License](LICENSE). While the original Trellis is MIT licensed, we have specifically removed its dependencies on certain NVIDIA libraries (kaolin, nvdiffrast, flexicube) to ensure this adapted version can be used commercially. Stable3DGen itself is distributed under the [MIT License](LICENSE).
34
+
35
+ ## Citation
36
+ If you find this work helpful, please consider citing our paper:
37
+ ```
38
+ @article{ye2025hi3dgen,
39
+ title={Hi3DGen: High-fidelity 3D Geometry Generation from Images via Normal Bridging},
40
+ author={Ye, Chongjie and Wu, Yushuang and Lu, Ziteng and Chang, Jiahao and Guo, Xiaoyang and Zhou, Jiaqing and Zhao, Hao and Han, Xiaoguang},
41
+ journal={arXiv preprint arXiv:2503.22236},
42
+ year={2025}
43
+ }
44
+ ```