Let’s build an object detector using Python + Machine Learning!
3 min readMay 27, 2021
Welcome back! Whether you’re an experienced machine learning engineer or a beginner, building out an object detector is an awesome project to help develop your skillset. This tutorial is essentially a walkthrough of the YOLOv4 project built out below, check out the full code / walkthrough below:
Let’s go ahead and walkthrough this project!
Building The Project
Starting off, we’re going to be bring in (clone) the darknet project on Github, to do so do the following in your Python console:
git clone https://github.com/AlexeyAB/darknet
If you want to learn more about darknet check out their Github below: