├── requirements.txt └── README.md /requirements.txt: -------------------------------------------------------------------------------- 1 | keras_cv 2 | tensorflow_datasets -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Generating images using Stable Diffusion 2 | 3 | This notebook shows how to generate images using the [Stability AI's](https://stability.ai/) Stable Diffusion model. This code uses Keras' implementation. 4 | 5 | The code in this notebook is inspired by the following work: 6 | 7 | * [High-performance image generation using Stable Diffusion in KerasCV](https://keras.io/guides/keras_cv/generate_images_with_stable_diffusion/) by François Chollet, Luke Wood, and Divam Gupta. 8 | * [A walk through latent space with Stable Diffusion](https://keras.io/examples/generative/random_walks_with_stable_diffusion/) by Ian Stenbit, François Chollet, and Luke Wood. 9 | 10 | [![Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1D4-QZv6OH_-IcddiZynWc4KXatfHzM9r?usp=sharing) 11 | --------------------------------------------------------------------------------