jl749 / YOLOv3

yolov3 implementation in pytorch (https://arxiv.org/pdf/1804.02767.pdf)
0 stars 0 forks source link

YOLOv3

minimal implementation of YOLOv3 in pytorch.

run the following command to start training on the default setting.

python3 yolov3/train.py

example result (y-axis is log scaled)

train_loss_210.png

mAP: 0.5328507833182812
recall: 0.5872999429702759
precision: 0.4169691205024719

dataset (PASCAL VOC in YOLO format [cx, cy, w, h])

download HERE

or

run download_pascal_voc.py

reference

original code from https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/object_detection/YOLOv3

TODO