Model zoo YOLOv4 model zoo Pretrained models Proper configuration based on GPU We do NOT suggest you train the model with subdivisions equal or larger than 32, it will takes very long training time.
2020-12-19
Clone and build Darknet Clone darknet repo git clone https://github.com/AlexeyAB/darknet Change makefile to have GPU and OPENCV enabled cd darknet sed -i 's/OPENCV=0/OPENCV=1/' Makefile sed -i 's/GPU=0/GPU=1/' Makefile sed -i 's/CUDNN=0/CUDNN=1/' Makefile sed -i 's/CUDNN_HALF=0/CUDNN_HALF=1/' Makefile Verify CUDA
2020-11-04
Here we will learn how to get YOLOv4 Object Detection running in the Cloud with Google Colab step by step. Check out the Google Colab Notebook Clone and build DarkNet Clone darknet from AlexeyAB’s repository,
2020-11-04