I am running Docker on Ubuntu and I used the provided CPU dockerfile to build the image. The image is created successfully but the app keeps crashing with the following error:
After some digging I found a similar issue from a different project: https://github.com/Gourieff/sd-webui-reactor/issues/108. I followed the comments and edited the requirements.txt, bumping the onnx from 1.13.0 to 1.14.0 (and adding the onnxruntime==1.15.0) and the app started working again. Just posting it here for anyone who encounters the same error.
I am running Docker on Ubuntu and I used the provided CPU dockerfile to build the image. The image is created successfully but the app keeps crashing with the following error:
valueerror: this ort build has ['azure execution provider', 'cudaexecutionprovider'] enabled. since ort 1.9, you are required to explicitly set the providers parameter when instantiating inferencesession
After some digging I found a similar issue from a different project: https://github.com/Gourieff/sd-webui-reactor/issues/108. I followed the comments and edited the requirements.txt, bumping the onnx from 1.13.0 to 1.14.0 (and adding the onnxruntime==1.15.0) and the app started working again. Just posting it here for anyone who encounters the same error.