|
|
|
|
|
by manyone1
1392 days ago
|
|
python 3.10 will fail on openvino.
i used these steps: anaconda prompt cd to the destination folder conda create --name py38 python=3.8 conda activate py38 conda update --all conda install openvino-ie4py -c intel pip install -r requirements.txt i also had to edit stable_diffusion.py and changed in the #decoder area:
changed vae.xml and vae.bin to vae_decoder.xml and vae_decoder.bin respectively from there i could run python stable_diffusion.py --prompt "Street-art painting of Emma Stone dancing, in picasso style" for img2img, use this (note DIFFERENT program): python demo.py --prompt "astronaut with jetpack floating in space with earth below" --init-image ./data/jomar.jpg --strength 0.5 |
|