dmitriitochilkin commited on
Commit
70db96d
1 Parent(s): ae501b7

add three studio instructions

Browse files
Files changed (1) hide show
  1. README.md +9 -5
README.md CHANGED
@@ -25,12 +25,16 @@ With improved data rendering and model conditioning strategies, our model demons
25
 
26
  By using Score Distillation Sampling (SDS) along with the Stable Zero123 model, we can produce high-quality 3D models from any input image. The process can also extend to text-to-3D generation by first generating a single image using SDXL and then using SDS on Stable Zero123 to generate the 3D object.
27
 
28
- To use Stable Zero123 for object 3D mesh generation in [threestudio](https://github.com/threestudio-project/threestudio), please follow the installation instructions and run
 
 
 
 
 
 
 
 
29
  ```
30
- python launch.py --config configs/stable_zero123.yaml --train --gpu 0 data.image_path=./load/images/dog1_rgba.png
31
- ```
32
-
33
-
34
 
35
  ## Model Details
36
 
 
25
 
26
  By using Score Distillation Sampling (SDS) along with the Stable Zero123 model, we can produce high-quality 3D models from any input image. The process can also extend to text-to-3D generation by first generating a single image using SDXL and then using SDS on Stable Zero123 to generate the 3D object.
27
 
28
+ To use Stable Zero123 for object 3D mesh generation in [threestudio](https://github.com/threestudio-project/threestudio), you can follow these steps:
29
+
30
+ 1. Install threestudio using instructions
31
+ 2. Take an image of your choice, or generate it from text using your favourite AI image generator such as SDXL Turbo (https://clipdrop.co/stable-diffusion-turbo) E.g. "A simple 3D render of a friendly dog"
32
+ 3. Remove its background using Clipdrop (https://clipdrop.co/remove-background)
33
+ 4. Save to `load/images/`, preferably with `_rgba.png` as the suffix
34
+ 5. Run Zero-1-to-3 with the Stable Zero123 ckpt:
35
+ ```sh
36
+ python launch.py --config configs/stable-zero123.yaml --train --gpu 0 data.image_path=./load/images/dog1_rgba.png
37
  ```
 
 
 
 
38
 
39
  ## Model Details
40