Object Detection :: Darknet TXT
YOLOv4 Darknet
To train YOLOv4 Darknet,
just drop in your dataset link from Roboflow.
What is YOLOv4?
YOLOv4 was a real-time object detection model published in April 2020 that achieved state-of-the-art performance on the COCO dataset. It works by breaking the object detection task into two pieces, regression to identify object positioning via bounding boxes and classification to determine the object's class. This implementation of YoloV4 uses the Darknet framework.
By using YOLOv4, you are implementing many of the past research contributions in the YOLO family along with a series of new contributions unique to YOLOv4 including new features: WRC, CSP, CmBN, SAT, Mish activation, Mosaic data augmentation, CmBN, DropBlock regularization, and CIoU loss. In short, with YOLOv4, you're using a better object detection network architecture and new data augmentation techniques.
YOLOv4 Architecture
YOLOv4 Results
As can be seen in the results below, YOLOv4 has an incredibly high performance for a very high FPS; this was a major improvement from previous object detection models which only had either high performance or high inference speeds.
Further Reading about YOLOv4
Breaking Down YOLOv4: https://blog.roboflow.com/a-thorough-breakdown-of-yolov4/
Training YOLOv4 on a Custom Dataset: https://blog.roboflow.com/training-yolov4-on-a-custom-dataset/