This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
How can I use the GUI with other models and CPU-only mode? #9
-
I cannot find a model selection field or a toggle of CPU-only mode in the GUI. |
Beta Was this translation helpful? Give feedback.
Answered by
azuritecoin
Nov 2, 2022
Replies: 1 comment 1 reply
-
First make sure you updated to the latest duffusers v0.6.0 and got the latest The way you select the model is with the python onnxUI.py --model="./stable_diffusion_onnx" To run CPU only mode, add a `--cpu-only' flag. python onnxUI.py --model="./stable_diffusion_onnx" --cpu-only |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
cyatarow
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
First make sure you updated to the latest duffusers v0.6.0 and got the latest
onnxUI.py
script downloaded.The way you select the model is with the
--model
flag when starting the UI script. For example to run the base SD model you would do:python onnxUI.py --model="./stable_diffusion_onnx"
To run CPU only mode, add a `--cpu-only' flag.
python onnxUI.py --model="./stable_diffusion_onnx" --cpu-only