stable_diffusion.openvino
stable_diffusion.openvino copied to clipboard
Hi! Thanks for the great project, it's the only working for me at the moment (amd, linux and RX560) and a huge step on putting Stable Diffusion to the masses!...
Especially these two seem interesting ```sh --num-inference-steps NUM_INFERENCE_STEPS num inference steps --guidance-scale GUIDANCE_SCALE guidance scale ``` By limiting the inference steps, you seem to get an intermediate result faster. Is...
See the suggestion here: https://github.com/bes-dev/stable_diffusion.openvino/issues/15#issuecomment-1239812190 Add ` --platform=linux/amd64` to the docker file like so: ``` FROM --platform=linux/amd64 python:3.9.9-bullseye ```
I tried but always failed in below line of code: self.unet = self.core.compile_model(self._unet, device) There is error when compiling unet, with error "node input index is out of range". Does...
Looking over the OpenVino documentation there seems to be a lot of potential for optimization, especially optimization of an already trained model: https://docs.openvino.ai/latest/openvino_docs_model_optimization_guide.html My initial question here would be: is...
Microsoft Windows [Version 10.0.19044.1889] (c) Microsoft Corporation. All rights reserved. C:\Users\Henrich Viviers\Documents\stable_diffusion.openvino-master>pip install -r requirements.txt Collecting numpy==1.19.5 Downloading numpy-1.19.5.zip (7.3 MB) ---------------------------------------- 7.3/7.3 MB 4.2 MB/s eta 0:00:00 Installing build...
Creating a docker image and running streamlit with demo_web.py gives the following error immediately upon entering the web app from a browser: ``` $ docker run -p 8501:8501 sdopenvino:latest You...
Add 2 files and this will close #27 - pyproject.toml - poetry.lock Poetry version 1.1.6 Usage ``` $ poetry install $ poetry run python python_file ```
Just wanted to put this here for anyone who had some headaches with this and all the other versions of stable diffusion. - If you specify the output file, you...