This project provides a guide and code to train your own custom object detection model using the powerful YOLOv3 system. It leverages the Darknet Framework engine and runs the entire Training Process within the Google Colab Environment, allowing you to configure the model structure and dataset details using Configuration Files.
flowchart TD
A0["Darknet Framework
"]
A1["YOLOv3 Model Configuration (.cfg)
"]
A2["Dataset Configuration (.data, .names, train.txt)
"]
A3["Training Process
"]
A4["Google Colab Environment
"]
A4 -- "Sets up" --> A0
A4 -- "Prepares" --> A1
A4 -- "Prepares" --> A2
A0 -- "Executes" --> A3
A3 -- "Uses" --> A1
A3 -- "Uses" --> A2
- Google Colab Environment
- Dataset Configuration (.data, .names, train.txt)
- YOLOv3 Model Configuration (.cfg)
- Darknet Framework
- Training Process