You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The file segmind_tiny-sd.ckpt will be generated and is now ready for use with sd.cpp. You can follow a similar process for the other models mentioned above.
93
+
The file segmind_tiny-sd.safetensors will be generated and is now ready for use with sd.cpp. You can follow a similar process for the other models mentioned above.
Another very tiny and **incredibly fast** model is SDXS by IDKiro et al. The authors refer to it as *"Real-Time One-Step Latent Diffusion Models with Image Conditions"*. For details read the paper: https://arxiv.org/pdf/2403.16627 . Once again the authors removed some more blocks of U-Net part and unlike other SD1 models they use an adjusted _AutoEncoderTiny_ instead of default _AutoEncoderKL_ for the VAE part.
99
+
##### Some ready-to-run SDXS-512 model files are available online, such as:
115
100
116
-
##### 1. Download the diffusers model from Hugging Face using Python:
~/stable-diffusion.cpp/build/bin/sd-cli -m sdxs.safetensors -p "portrait of a lovely cat" \
134
107
--cfg-scale 1 --steps 1
135
108
```
109
+
Both options: ``` --cfg-scale 1 ``` and ``` --steps 1 ``` are mandatory here.
110
+
111
+
### SDXS-512-0.9
112
+
113
+
Even though the name "SDXS-512-0.9" is similar to "SDXS-512-DreamShaper", it is *completely different* but also **incredibly fast**. Sometimes it is preferred, so try it yourself.
114
+
##### Download a ready-to-run file from here:
115
+
116
+
*https://huggingface.co/akleine/sdxs-09
136
117
137
-
Both options:``` --cfg-scale 1 ``` and ``` --steps 1 ``` are mandatory here.
118
+
For the use of this model, both options ``` --cfg-scale 1 ``` and ``` --steps 1 ``` are again absolutely necessary.
0 commit comments