Instructions to use waifu-diffusion/wd-1-5-beta with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use waifu-diffusion/wd-1-5-beta 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-beta", 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
|
@@ -19,6 +19,8 @@ I've included a "wdgoodprompt" and "wdbadprompt" embedding in the embeddings fol
|
|
| 19 |
# Generation
|
| 20 |
With Waifu Diffusion 1.5, best results are generated from generating at a resolution of somewhere between 500 and 1000 and then using 2x latent upscale hiresfix
|
| 21 |
|
|
|
|
|
|
|
| 22 |
## License
|
| 23 |
|
| 24 |
WD 1.5 is released under the AGPL v3 ([https://www.gnu.org/licenses/agpl-3.0.en.html](https://www.gnu.org/licenses/agpl-3.0.en.html)) and the CreativeML Open RAIL++-M License ([https://huggingface.co/stabilityai/stable-diffusion-2/raw/main/LICENSE-MODEL](https://huggingface.co/stabilityai/stable-diffusion-2/raw/main/LICENSE-MODEL)), with both licenses being applicable. If any derivative of this model is made, please share your changes accordingly.
|
|
|
|
| 19 |
# Generation
|
| 20 |
With Waifu Diffusion 1.5, best results are generated from generating at a resolution of somewhere between 500 and 1000 and then using 2x latent upscale hiresfix
|
| 21 |
|
| 22 |
+
Here are some prompting examples: https://cafeai.notion.site/WD-1-5-Beta-Examples-d9417e2f1f064437996b581f361e7ef3
|
| 23 |
+
|
| 24 |
## License
|
| 25 |
|
| 26 |
WD 1.5 is released under the AGPL v3 ([https://www.gnu.org/licenses/agpl-3.0.en.html](https://www.gnu.org/licenses/agpl-3.0.en.html)) and the CreativeML Open RAIL++-M License ([https://huggingface.co/stabilityai/stable-diffusion-2/raw/main/LICENSE-MODEL](https://huggingface.co/stabilityai/stable-diffusion-2/raw/main/LICENSE-MODEL)), with both licenses being applicable. If any derivative of this model is made, please share your changes accordingly.
|