Instructions to use waifu-diffusion/wd-1-5-beta2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use waifu-diffusion/wd-1-5-beta2 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("waifu-diffusion/wd-1-5-beta2", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,6 +11,9 @@ For this release, we release two versions of the model:
|
|
| 11 |
|
| 12 |
For the aesthetic version, we finetune the attention layer on popular aesthetic images. For training, it is recomended to use the base version.
|
| 13 |
|
|
|
|
|
|
|
|
|
|
| 14 |
### Release Notes
|
| 15 |
|
| 16 |
|
|
|
|
| 11 |
|
| 12 |
For the aesthetic version, we finetune the attention layer on popular aesthetic images. For training, it is recomended to use the base version.
|
| 13 |
|
| 14 |
+
# VAE
|
| 15 |
+
WD 1.5 uses the same VAE as WD 1.4, which can be found here https://huggingface.co/hakurei/waifu-diffusion-v1-4/blob/main/vae/kl-f8-anime2.ckpt
|
| 16 |
+
|
| 17 |
### Release Notes
|
| 18 |
|
| 19 |
|