pytorch-stable-diffusion
PyTorch implementation of Stable Diffusion from scratch
Download weights and tokenizer files:
- Download
vocab.json
and merges.txt
from https://huggingface.co/stable-diffusion-v1-5/stable-diffusion-v1-5/tree/main/tokenizer and save them in the data
folder
- Download
v1-5-pruned-emaonly.ckpt
from https://huggingface.co/stable-diffusion-v1-5/stable-diffusion-v1-5/tree/main and save it in the data
folder
Tested fine-tuned models:
Just download the ckpt
file from any fine-tuned SD (up to v1.5).
- InkPunk Diffusion: https://huggingface.co/Envvi/Inkpunk-Diffusion/tree/main
- Illustration Diffusion (Hollie Mengert): https://huggingface.co/ogkalu/Illustration-Diffusion/tree/main
Special thanks
Special thanks to the following repositories:
- https://github.com/CompVis/stable-diffusion/
- https://github.com/divamgupta/stable-diffusion-tensorflow
- https://github.com/kjsman/stable-diffusion-pytorch
- https://github.com/huggingface/diffusers/