Skip to content
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

ONNX DNN inference bug: (-215:Assertion failed) inputs.size() in function 'getMemoryShapes' #8744

Closed
glenn-jocher opened this issue Jul 27, 2022 · 12 comments
Labels
bug Something isn't working Stale

Comments

@glenn-jocher
Copy link
Member

I followed the tutorial to OpenCV inference with ONNX models, but it has some problems.
1658932624846

Originally posted by @longtimenoseeyou in #251 (comment)

Reproduce:

!python export.py --include onnx
!python detect.py --weights yolov5s.onnx --dnn
@glenn-jocher glenn-jocher added bug Something isn't working TODO labels Jul 27, 2022
@github-actions
Copy link
Contributor

github-actions bot commented Jul 27, 2022

👋 Hello @glenn-jocher, thank you for your interest in YOLOv5 🚀! Please visit our ⭐️ Tutorials to get started, where you can find quickstart guides for simple tasks like Custom Data Training all the way to advanced concepts like Hyperparameter Evolution.

If this is a 🐛 Bug Report, please provide screenshots and minimum viable code to reproduce your issue, otherwise we can not help you.

If this is a custom training ❓ Question, please provide as much information as possible, including dataset images, training logs, screenshots, and a public link to online W&B logging if available.

For business inquiries or professional support requests please visit https://ultralytics.com or email support@ultralytics.com.

Requirements

Python>=3.7.0 with all requirements.txt installed including PyTorch>=1.7. To get started:

git clone https://github.com/ultralytics/yolov5  # clone
cd yolov5
pip install -r requirements.txt  # install

Environments

YOLOv5 may be run in any of the following up-to-date verified environments (with all dependencies including CUDA/CUDNN, Python and PyTorch preinstalled):

Status

CI CPU testing

If this badge is green, all YOLOv5 GitHub Actions Continuous Integration (CI) tests are currently passing. CI tests verify correct operation of YOLOv5 training (train.py), validation (val.py), inference (detect.py) and export (export.py) on macOS, Windows, and Ubuntu every 24 hours and on every commit.

@glenn-jocher
Copy link
Member Author

@longtimenoseeyou I would raise this issue directly on the opencv repository as the error originates in cv2.

@glenn-jocher
Copy link
Member Author

@longtimenoseeyou in #8439 it looks like this issue is related to torch==1.12 and downgrading to torch<=1.11.0 will resolve the bug.

@glenn-jocher glenn-jocher removed the TODO label Jul 27, 2022
@longtimenoseeyou
Copy link

Thank you, Glenn, I solve the problem

@knoppmyth
Copy link

@longtimenoseeyou How did you solve this? Was it downgrading to 1.11? While that works, I cannot then train with 1.11 as it errors. At this point, I'd have to train w/ 1.12 then have another environment w/ 1.11 to export.

@longtimenoseeyou
Copy link

@knoppmyth Yeah, I downgraded to torch ==1.11. Now I train datasets normally and do not see any other problem

@longtimenoseeyou
Copy link

At the end of training with torch=1.11 , I get the error:
AttributeError: 'NoneType' object has no attribute '_free_weak_ref'

@knoppmyth
Copy link

@longtimenoseeyou I went back to an older container and notes... The error you get at the end of training w/ 1.11.0 is non-fatal.

@github-actions
Copy link
Contributor

github-actions bot commented Aug 28, 2022

👋 Hello, this issue has been automatically marked as stale because it has not had recent activity. Please note it will be closed if no further activity occurs.

Access additional YOLOv5 🚀 resources:

Access additional Ultralytics ⚡ resources:

Feel free to inform us of any other issues you discover or feature requests that come to mind in the future. Pull Requests (PRs) are also always welcomed!

Thank you for your contributions to YOLOv5 🚀 and Vision AI ⭐!

@elw1ng
Copy link

elw1ng commented Jan 3, 2023

@longtimenoseeyou in #8439 it looks like this issue is related to torch==1.12 and downgrading to torch<=1.11.0 will resolve the bug.
image
i got this error ONNX: export failure 0.0s: Unsupported ONNX opset version: 17
when tried to export onnx model from pt after downgraded to torch==1.11.0
on default version i got this error, even on colab
image

@fangfap
Copy link

fangfap commented Jan 11, 2023

python export.py --weights models/yolov5n.pt --opset 11 --include onnx
downgrade opset to 11 work for me :))

@glenn-jocher
Copy link
Member Author

@fangfap great to hear that downgrading the ONNX opset version to 11 resolved the issue for you! Thank you for sharing your solution.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working Stale
Projects
None yet
Development

No branches or pull requests

5 participants