-
-
Notifications
You must be signed in to change notification settings - Fork 16.4k
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
fuse not defined. #7
Comments
Hello @mad-fogs, thank you for your interest in our work! Please visit our Custom Training Tutorial to get started, and see our Google Colab Notebook, Docker Image, and GCP Quickstart Guide for example environments. 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 model or data training question, please note that Ultralytics does not provide free personal support. As a leader in vision ML and AI, we do offer professional consulting, from simple expert advice up to delivery of fully customized, end-to-end production solutions for our clients, such as: - Cloud-based AI surveillance systems operating on hundreds of HD video streams in realtime. - Edge AI integrated into custom iOS and Android apps for realtime 30 FPS video inference. - Custom data training, hyperparameter evolution, and model exportation to any destination. For more information please visit https://www.ultralytics.com. |
@mad-fogs thank you for the bug report! This should be fixed in df7988d. We've moved onnx export functionality from detect.py into it's own file at ./models/onnx_export.py: Example usage of the new file: $ export PYTHONPATH="$PWD"
$ python models/onnx_export.py --weights ./weights/yolov5s.pt --img 640 --batch 1 .fuse() functionality is not available yet, so we've commented out this part in the new file and marked it as TODO. |
add val_instseg.py&&remove useless code
This reverts commit b5f321e.
when export_onnx is set to be true, error will be outcome:
AttributeError: 'Model' object has no attribute 'fuse'
The text was updated successfully, but these errors were encountered: