Run YOLOv3 on your own images to detect and locate objects across the 80 standard COCO categories using pre-trained weights.
Train a custom object detector on your own image dataset by preparing an annotation file and running the included training script.
Use Tiny YOLOv3 for faster, lighter object detection on machines without a powerful GPU.
Convert official YOLO weights to Keras format and run video inference using the provided detection script.
Built on TensorFlow 1.6 and Keras 2.1.5, running on modern TensorFlow 2.x requires significant compatibility fixes.
keras-yolo3 is a Python implementation of YOLOv3, a system for detecting and locating objects in images and videos. YOLO stands for You Only Look Once, referring to how the model processes an entire image in a single pass to identify where objects are and what they are. This implementation is built on top of Keras, a Python library for working with neural networks, using TensorFlow as the underlying computation engine. To get started, you download the official YOLOv3 weights file from the original YOLO project website, then run a conversion script included in this repository to translate those weights into a format Keras can read. After that, you can run detection on a single image or on a video file using the provided script. The script supports multiple GPUs if you have more than one available, and there is also a smaller, faster variant called Tiny YOLOv3 for cases where speed matters more than accuracy. If you want to train the model on your own categories of objects rather than the default 80 classes, you prepare an annotation file that lists each image path alongside the bounding box coordinates and class labels for every object in that image. You then run the training script, which first freezes the early layers of the network and only trains the final layers, a common approach that saves time and works well when starting from pretrained weights. A separate script handles the bottleneck feature approach, which pre-computes intermediate outputs so that training is feasible even on a machine with only a CPU. The README notes that results differ slightly from the original Darknet implementation, that inference is somewhat slower, and that the training approach shown is a starting point rather than a definitive recipe. The project was tested with Python 3.5, Keras 2.1.5, and TensorFlow 1.6, which are older versions, so compatibility with newer software may require adjustments.
← qqwweee on gitmyhub — every repo by this author, as a profile.
Verify against the repo before relying on details.