#Darknet# Darknet is an open source neural network framework written in C and CUDA. It is fast, easy to install, and supports CPU and GPU computation.
For more information see the Darknet project website.
For questions or issues please use the Google Group.
make -j8#Run YOLO on VOC dataset
wget http://pjreddie.com/media/files/yolo.weights
./darknet yolo test cfg/yolo.cfg ../yolo.weights data/person.jpg#Run YOLO on COCO dataset
wget http://pjreddie.com/media/files/yolo-coco.weights
./darknet coco test cfg/yolo-coco.cfg ../yolo-coco.weights data/person.jpg