Final project for Neural Networks course -> Implementation of the paper "YOLOv3: An incremental improvement" (https://arxiv.org/pdf/1804.02767.pdf).
Full report here.
This project is written in Python 3.6.9 using Tensorflow (deep learning), NumPy (numerical computing) and OpenCV (computer vision).
pip install -r requirements.txt
Let's download official weights pretrained on COCO dataset.
wget -P weights https://pjreddie.com/media/files/yolov3.weights
Now you can run the model using detection.py
script by calling python3.