-
-
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
new ultralytics custom trained model issue #11307
Comments
👋 Hello @hakmesyo, 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 a minimum reproducible example to help us debug it. If this is a custom training ❓ Question, please provide as much information as possible, including dataset image examples and training logs, and verify you are following our Tips for Best Training Results. RequirementsPython>=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 EnvironmentsYOLOv5 may be run in any of the following up-to-date verified environments (with all dependencies including CUDA/CUDNN, Python and PyTorch preinstalled):
StatusIf this badge is green, all YOLOv5 GitHub Actions Continuous Integration (CI) tests are currently passing. CI tests verify correct operation of YOLOv5 training, validation, inference, export and benchmarks on MacOS, Windows, and Ubuntu every 24 hours and on every commit. Introducing YOLOv8 🚀We're excited to announce the launch of our latest state-of-the-art (SOTA) object detection model for 2023 - YOLOv8 🚀! Designed to be fast, accurate, and easy to use, YOLOv8 is an ideal choice for a wide range of object detection, image segmentation and image classification tasks. With YOLOv8, you'll be able to quickly and accurately detect objects in real-time, streamline your workflows, and achieve new levels of accuracy in your projects. Check out our YOLOv8 Docs for details and get started with: pip install ultralytics |
Hi @angrypenguin89, This error message typically appears when there are changes made to the source code and cache, which causes inconsistencies. You could try running with If the problem persists, please describe your use case and environment more specifically and provide the exact steps and code that led to this error. Any additional information that can help diagnose the issue would be appreciated. Feel free to reach out if you have any further questions or concerns. |
Thanks for your cooperations, indeed i have already added force_reload term as it can be seen code snippets below; import os modelPath=r'c:\yolov5/models/yolov5s_robotaksi_ds_1.pt' model = torch.hub.load('ultralytics/yolov5', 'custom', path=modelPath, force_reload=True) this error comes yesterday. Because model generated from ultrlaytics hub two days ago runs without any issues. We need urgent fix since we use ultralytics in our running projects. Thanks in advance. |
Hi @hakmesyo, I'm sorry to hear that you are still experiencing issues with the If you are unable to solve the issue, please consider opening a Github issue in the YOLOv5 repository that describes the error in more detail and provides your code, environment, and other relevant details related to your issue. You can also include a minimum reproducible code example so that the developers can reproduce the issue and evaluate the necessary fix. The YOLOv5 developers will be able to provide you with more targeted assistance and help address the issue quicker. Please feel free to let me know if you have any other questions. |
i also have this problem. and cause File ~/anaconda3/envs/yolo/lib/python3.8/site-packages/torch/nn/modules/module.py:1145, in Module.to(self, *args, **kwargs) File ~/.cache/torch/hub/ultralytics_yolov5_master/models/common.py:651, in AutoShape._apply(self, fn) File ~/anaconda3/envs/yolo/lib/python3.8/site-packages/torch/nn/modules/module.py:1614, in Module.getattr(self, name) AttributeError: 'Detect' object has no attribute 'grid' The above exception was the direct cause of the following exception: Exception Traceback (most recent call last) File ~/anaconda3/envs/yolo/lib/python3.8/site-packages/torch/hub.py:558, in load(repo_or_dir, model, source, trust_repo, force_reload, verbose, skip_validation, *args, **kwargs) File ~/anaconda3/envs/yolo/lib/python3.8/site-packages/torch/hub.py:587, in _load_local(hubconf_dir, model, *args, **kwargs) File ~/yolov5/hubconf.py:83, in custom(path, autoshape, _verbose, device) File ~/yolov5/hubconf.py:78, in _create(name, pretrained, channels, classes, autoshape, verbose, device) Exception: 'Detect' object has no attribute 'grid'. Cache may be out of date, try how can i do? |
Hi @Wu-Jian-Ting, The error that you are seeing with the 'Detect' object not having an attribute 'grid' is a known issue that has been reported by other users recently. The error is due to inconsistencies between the source code and the cache resulting from changes made to the source code. One possible solution is to run with If that does not work, it may be helpful for you to open a new issue on the YOLOv5 repository with a minimum reproducible code example, details about your environment, and the specific steps that led to this error. The development team can then evaluate the issue and provide you with additional assistance and help you resolve this issue. Thank you for your patience and understanding. |
👋 Hello there! We wanted to give you a friendly reminder that this issue has not had any recent activity and may be closed soon, but don't worry - you can always reopen it if needed. If you still have any questions or concerns, please feel free to let us know how we can help. For additional resources and information, please see the links below:
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 YOLO 🚀 and Vision AI ⭐ |
Hi all,
new ultralytics custom trained model raises an exception
Exception: 'Detect' object has no attribute 'grid'. Cache may be out of date, try
force_reload=True
or see #36 for help.this issue appeared yesterday. there is no problem model obtained yolov5 from ultralytics hub before yesterday.
Regards
The text was updated successfully, but these errors were encountered: