waifu-diffusion/README.md

54 lines
1.7 KiB
Markdown
Raw Normal View History

2022-08-18 15:54:01 -06:00
2022-09-04 23:33:31 -06:00
# Waifu Diffusion
Waifu Diffusion is the name for this project of finetuning Stable Diffusion on Danbooru images.
2022-09-04 23:31:40 -06:00
2022-09-04 23:33:31 -06:00
<img src=https://cdn.discordapp.com/attachments/872361510133981234/1016022078635388979/unknown.png?3867929 width=40% height=40%>
<sub>Prompt: touhou 1girl komeiji_koishi portrait</sub>
2022-09-04 23:31:40 -06:00
## Documentation
2022-09-09 01:23:08 -06:00
2022-09-09 01:22:16 -06:00
[Index](./docs/en/README.md)
2022-09-09 01:23:08 -06:00
2022-09-09 01:22:16 -06:00
[Weights](./docs/en/weights/README.md)
2022-09-09 01:23:08 -06:00
2022-09-09 01:47:39 -06:00
[Training Guide](./docs/en/training/README.md)
2022-09-04 23:31:40 -06:00
All thanks goes to CompVis and Stability AI for releasing this codebase!
2022-08-18 15:54:01 -06:00
2022-09-04 23:33:31 -06:00
Model Link: https://huggingface.co/hakurei/waifu-diffusion
### Any questions? Come hop on by to our Discord server!
[![Discord Server](https://discordapp.com/api/guilds/930499730843250783/widget.png?style=banner2)](https://discord.gg/Sx6Spmsgx7)
2022-08-10 08:30:49 -06:00
# Stable Diffusion
*Stable Diffusion was made possible thanks to a collaboration with [Stability AI](https://stability.ai/) and [Runway](https://runwayml.com/) and builds upon our previous work:*
2021-12-20 19:23:41 -07:00
## Comments
2022-08-10 08:30:49 -06:00
- Our codebase for the diffusion models builds heavily on [OpenAI's ADM codebase](https://github.com/openai/guided-diffusion)
2021-12-20 19:23:41 -07:00
and [https://github.com/lucidrains/denoising-diffusion-pytorch](https://github.com/lucidrains/denoising-diffusion-pytorch).
Thanks for open-sourcing!
- The implementation of the transformer encoder is from [x-transformers](https://github.com/lucidrains/x-transformers) by [lucidrains](https://github.com/lucidrains?tab=repositories).
## BibTeX
```
@misc{rombach2021highresolution,
title={High-Resolution Image Synthesis with Latent Diffusion Models},
author={Robin Rombach and Andreas Blattmann and Dominik Lorenz and Patrick Esser and Björn Ommer},
year={2021},
eprint={2112.10752},
archivePrefix={arXiv},
primaryClass={cs.CV}
}
2022-08-10 08:30:49 -06:00
```
2021-12-20 17:59:06 -07:00