Scaled YOLOv4

Chien-Yao Wang, Alexey Bochkovskiy, and Hong-Yuan Mark Liao (more commonly known by their GitHub monikers, WongKinYiu and AlexyAB) have propelled the YOLOv4 model forward by efficiently scaling the network’s design and scale, surpassing the previous state-of-the-art EfficientDet published earlier this year by the Google Research/Brain team.

img

Train scaled YOLOv4 (PyTorch)

The Scaled-YOLOv4 implementation is written in the YOLOv5 PyTorch framework. Training scaled YOLOv4 is similar to training YOLOv5.

Here is the Scaled-YOLOv4 repo, though you will notice that WongKinYiu has provided it there predominantly for research replication purposes and there are not many instructions for training on your own dataset. To train on your own data, our guide on training YOLOv5 in PyTorch on custom data will be useful, as it is a very similar training procedure.

Tutorials from Roboflow:

My Colab Notebook: yolov4_scaled.ipynb

Train scaled YOLOv4 (Darknet)

YOLOv4-csp training is also supported by Darknet. Training yolov4-csp is similar to training yolov4 and yolov4-tiny. Slight difference:

Reference

Previous
Next