Closed CFZ1 closed 2 months ago
Thank for advice, after checking the code, the implementation of yolov10[inclued the backbone and the neck] is indeed different from the original paper. And we will fix the bug soon and release the pretrained model. And the head implementation is refer the code
Thank you for your feedback. We look forward to seeing the updated implementation and wish you success in your work. :smile: 🎉
I greatly appreciate the authors' work on this project, which has been incredibly helpful. However, I've noticed some discrepancies between the model structure in this implementation and the original YOLOv10 code (https://github.com/THU-MIG/yolov10).
After comparing the structures for YOLOv10m, I observed the following differences: (1) Layer 19 in the neck uses a different module compared to the original code (C2f vs C2fCIB). (2) The implementation of one2many_cls_preds appears to differ from the original version.
yolov10s:
yolov10m:
Notable differences between the original YOLOv10 models (n/s/m/b/l/x) include variations in: (1) Layers 13 and 19 in the neck, (2) Layer 8 of the backbone.
To facilitate this comparison, I used the following code to print the model structure of the original implementation:
If I've misunderstood something, please correct me. Thank you for your attention to this matter.