AlexeyAB / darknet

YOLOv4 / Scaled-YOLOv4 / YOLO - Neural Networks for Object Detection (Windows and Linux version of Darknet )
http://pjreddie.com/darknet/
Other
21.57k stars 7.95k forks source link

Support for Tiny variant for Scaled Yolov4? #8021

Open Justin-king-de opened 2 years ago

Justin-king-de commented 2 years ago

Hello @AlexeyAB @cenit @WongKinYiu . Is there a tiny variant for yolov4-csp??? If it is, can you please point me to that.

bulatnv commented 2 years ago

Hello @Justin-king-de.

yolov4-tiny is tiny variant of yolov4-csp. Thing is yolov4-tiny do not have such big neck and head as full yolov4 have. As a result, csp logic was applied only to the backbone.

For more information: 1) CSPNet: A New Backbone that can Enhance Learning Capability of CNN 2) Scaled-YOLOv4: Scaling Cross Stage Partial Network

Justin-king-de commented 2 years ago

Thanks @bulatnv .I will try that.