Spaces:
Runtime error
Runtime error
File size: 1,263 Bytes
db5855f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# Stable Diffusion with KerasCV and OpenVINO
This notebook demonstrates how to run [KerasCV Stable Diffusion](https://www.tensorflow.org/tutorials/generative/generate_images_with_stable_diffusion) using OpenVINO. An additional part demonstrates how to run optimization with [NNCF](https://github.com/openvinotoolkit/nncf/) to speed up pipeline.

## Notebook Contents
This notebook demonstrates how to convert, run and optimize stable diffusion using OpenVINO and NNCF.
Notebook contains the following steps:
- Convert Stable Diffusion Pipeline models to OpenVINO
- Convert text encoder
- Convert diffusion model
- Convert decoder
- Stable Diffusion Pipeline with OpenVINO
- Optimize pipeline with [NNCF](https://github.com/openvinotoolkit/nncf/)
- Compare results of original and optimized pipelines
- Interactive Demo
## Installation Instructions
This is a self-contained example that relies solely on its own code.</br>
We recommend running the notebook in a virtual environment. You only need a Jupyter server to start.
For details, please refer to [Installation Guide](../../README.md). |