@@ -86,11 +86,13 @@ git submodule update
86
86
- Stable Diffusion v1.4 from https://huggingface.co/CompVis/stable-diffusion-v-1-4-original
87
87
- Stable Diffusion v1.5 from https://huggingface.co/runwayml/stable-diffusion-v1-5
88
88
- Stable Diffuison v2.1 from https://huggingface.co/stabilityai/stable-diffusion-2-1
89
+ - Stable Diffusion 3 2B from https://huggingface.co/stabilityai/stable-diffusion-3-medium
89
90
90
91
``` shell
91
92
curl -L -O https://huggingface.co/CompVis/stable-diffusion-v-1-4-original/resolve/main/sd-v1-4.ckpt
92
93
# curl -L -O https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.safetensors
93
94
# curl -L -O https://huggingface.co/stabilityai/stable-diffusion-2-1/resolve/main/v2-1_768-nonema-pruned.safetensors
95
+ # curl -L -O https://huggingface.co/stabilityai/stable-diffusion-3-medium/resolve/main/sd3_medium_incl_clips_t5xxlfp16.safetensors
94
96
```
95
97
96
98
# ## Build
@@ -226,6 +228,7 @@ For example:
226
228
./bin/sd -m ../models/sd-v1-4.ckpt -p " a lovely cat"
227
229
# ./bin/sd -m ../models/v1-5-pruned-emaonly.safetensors -p "a lovely cat"
228
230
# ./bin/sd -m ../models/sd_xl_base_1.0.safetensors --vae ../models/sdxl_vae-fp16-fix.safetensors -H 1024 -W 1024 -p "a lovely cat" -v
231
+ # ./bin/sd -m ../models/sd3_medium_incl_clips_t5xxlfp16.safetensors -H 1024 -W 1024 -p 'a lovely cat holding a sign says \"Stable Diffusion CPP\"' --cfg-scale 4.5 --sampling-method euler -v
229
232
```
230
233
231
234
Using formats of different precisions will yield results of varying quality.
@@ -384,6 +387,7 @@ Thank you to all the people who have already contributed to stable-diffusion.cpp
384
387
385
388
- [ ggml] ( https://github.com/ggerganov/ggml )
386
389
- [ stable-diffusion] ( https://github.com/CompVis/stable-diffusion )
390
+ - [ sd3-ref] ( https://github.com/Stability-AI/sd3-ref )
387
391
- [ stable-diffusion-stability-ai] ( https://github.com/Stability-AI/stablediffusion )
388
392
- [ stable-diffusion-webui] ( https://github.com/AUTOMATIC1111/stable-diffusion-webui )
389
393
- [ ComfyUI] ( https://github.com/comfyanonymous/ComfyUI )
0 commit comments