-
-
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
How to modify the network structure of the YOLOv5 classification model #13231
Comments
👋 Hello @lielumao, 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.8.0 with all requirements.txt installed including PyTorch>=1.8. 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 |
@lielumao hello, Thank you for reaching out and providing detailed information about the issue you're encountering. It looks like you're trying to modify the YOLOv5 classification model and are running into an To address this, please follow these steps:
Here's an example of how you might modify the # Parameters
nc: 1000 # number of classes
depth_multiple: 1.0 # model depth multiple
width_multiple: 1.0 # layer channel multiple
# YOLOv5 backbone
backbone:
[[-1, 1, Conv, [64, 3, 1]], # 0-P1/2
[-1, 1, Conv, [128, 3, 2]], # 1-P2/4
[-1, 3, Bottleneck, [128]], # 2
...
]
# YOLOv5 head
head:
[[-1, 1, Conv, [256, 3, 2]], # 13-P5/32
[-1, 1, Conv, [512, 3, 2]], # 14-P6/64
...
]
If the problem persists, please provide additional details or error logs, and we can further investigate. The YOLO community and the Ultralytics team are here to help! 😊 |
Hello, I currently have a solution that involves changing the network structure in the object detection model of YOLOv5, training a PT model, and then applying this model to train.by in the classification network. This will automatically truncate the loaded object detection network and load a classification header, thereby changing the network structure of the YOLOv5 classification model. Also, the solution you provided seems to be ineffective. Thank you for your help. |
Hello @lielumao, Thank you for sharing your approach and for your patience. It sounds like you have a creative solution for modifying the network structure of the YOLOv5 classification model by leveraging the object detection model. Here are a few additional suggestions and clarifications that might help streamline your process:
I hope these suggestions help you refine your approach. If you have any further questions or run into specific issues, feel free to share more details, and we'll be happy to assist you further. Thank you for your contributions and for being a part of the YOLO community! 😊 |
Search before asking
Question
Hello, I tried to change the example of YOLOv5 model=YOLO ('yolov5s-cls. yaml '). load ('yolov5s-cls. pt') to the corresponding YOLOv5-cls yaml and pt files, but encountered an error AttributeError: Can't get attribute 'Classification Model' on<module 'models. yolo' from'D: \ \ anaco \ \ envs \ \ yolo8 \ \ Lib \ \ site packages \ \ ultralytics \ \ models \ \ yolo \ \ init. py '>. How can I solve this problem? I tried importing only the YAML file and it ran correctly. But this cannot read the weight of the PT file. Or is there any way to operate in yolov5 master to change the yolov5 classification network structure.
Additional
No response
The text was updated successfully, but these errors were encountered: