-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ONNXRuntimeError] ComfyUI-WD14-Tagger #60
Comments
same issue here. came from comfyanonymous/ComfyUI#3716 (comment) - but yeah I'm getting the same error. |
I just used this until midnight my time then BOOM: onnxruntime::model_load_utils::ValidateOpsetForDomain ONNX Runtime only guarantees support for models stamped with official released onnx opset versions. Opset 4 is under development and support for this is limited. The operator schemas and or other functionality may change before next ONNX release and in this case ONNX Runtime will not guarantee backward compatibility. Current official support for domain ai.onnx.ml is till opset 3. |
Try the following.
@echo off
setlocal enabledelayedexpansion
echo Checking for python.exe in the current directory...
if not exist "python.exe" (
echo python.exe not found in the current directory.
echo Please make sure you've placed this script in the 'python_embeded' folder.
pause
exit /b 1
)
echo Python executable found in the current directory.
echo Uninstalling onnxruntime...
python.exe -s -m pip uninstall -y onnxruntime
echo.
echo Uninstalling onnxruntime-gpu...
python.exe -s -m pip uninstall -y onnxruntime-gpu
echo.
echo Uninstallation complete.
pause You can save this script as a .bat file and place it into the '\comfy\python_embeded' folder.
Please let me know if this works for you. I noticed that every time I update ComfyUI, I get 'onnxruntime' errors, so I have to go through this process again. |
Thx for your answer, I solved this issues. Really thanks! |
Thank you! You solved the issues! |
Worked perfectly, thank you! |
i resolved by it , thank you |
I was able to use ComfyUI-WD14-Tagger fine yesterday with the v3 models but today they give this error. Everything, including comfyui and the nodes are up to date.
The text was updated successfully, but these errors were encountered: