akozd / tensorflow_yolo_v3

A well-documented TensorFlow implementation of the YOLOv3 model.
MIT License
44 stars 16 forks source link

tensorflow_yolo_v3

A well-documented TensorFlow implementation of the YOLOv3 model.

Introduction

This is a TensorFlow implementation of the YOLOv3 model as described in this paper by Joseph Redmon. It is meant to be the best available online learning resource for understanding how to recreate the model's complex architecture from scratch. All code in the repository is fully documented. Sample TensorBoard event files have also been included to help with visualizing the graph structure and the loss during training.

The resources used in the making of this project were:

Quick Start

Dependencies

The test environment is:

Please make sure to have all of these dependencies installed before using. Follow these links if you are struggling with installing these dependencies:

Setup

  1. Open up terminal and cd into the root directory of this repository.
  2. Enter model_weights/get_pretrained_coco_weights.sh into the terminal, which will download the weights pretrained on the COCO dataset for use with YOLOv3. Alternatively if you are not using a MacBook, you can download the weights manually from this link, unzip them, and place them in the 'model_weights' directory. Make sure that the 'model_weights' directory looks like this:
    .
    +-- _model_weights
    |   +-- coco_pretrained_weights.ckpt.data-00000-of-00001
    |   +-- coco_pretrained_weights.ckpt.index
    |   +-- coco_pretrained_weights.ckpt.meta
    |   +-- get_pretrained_coco_weights.sh

With the pretrained weights downloaded, detect.py and train.py are now ready to use.

Perform Object Detection on an Image Using 'detect.py'

detect.py feeds an image into the YOLOv3 model and saves a new image with the detected objects. For example, with this image as the input: example input The resulting output will be this image: example output

Usage

To perform object detection on an image, follow these steps:

  1. With your open terminal cd to the repository's root directory.
  2. Enter python detect.py --path_to_input_image=path/to/your/image.jpg into the terminal.

It's as simple as that. You can also identically recreate the example output by typing in python detect.py --path_to_input_image=training_data/images/img1.jpg to get a better feeling for how the program works. Typing in python detect.py --help will give you a full rundown of the options available to you, of which include being able to load a different set of pretrained weights and changing the save name of the output image.

Train the YOLOv3 Model on a New Dataset Using 'train.py'

train.py trains the YOLOv3 model on a custom dataset. This means that YOLOv3 can be trained to identify almost any kind of object as long as the right dataset is provided.

Usage

To begin training on a custom dataset, follow these steps:

  1. With your open terminal cd to the repository's root directory.
  2. Make sure that the training_data directory is updated to include your dataset. Consult the current example setup to see how the dataset should be stored and prepared.
  3. Enter python train.py --train_from_chekpoint=model_weights/coco_pretrained_weights.ckpt into the terminal to begin training the model from the pretrained coco weights (recommended). You can also simply enter python train.py to train the model from scratch with randomly initialized weights (not recommended).

Typing in python train.py --help will give a full rundown of the options available to you. Some of the most important options include controlling how frequently the training model logs its loss and saves its weights, whether or not you want to purposefully overfit the model onto a single image for debugging purposes, adjusting the learning rate, adjusting the number of training epochs, and adjusting the split ratio between training data and validation data.

Inspect the YOLOv3 Model Architecture with TensorBoard

TensorBoard is a powerful tool for visualizing machine learning models. Everytime detect.py or train.py is run, TensorBoard event files will be saved with the latest graph data.

Usage

To access the event file generated during dectection, follow these steps:

  1. With your open terminal cd to the repository's root directory.
  2. Enter tensorboard --logdir=tensorboard/tensorboard_detect/ into the terminal.
  3. When a popup displaying the warning: "Do you want the application “python3.6” to accept incoming network connections?" shows up, click "accept".
  4. Open up a web browser and copy and paste the link in the terminal into your web browser.

To access the event file generated during training, follow these steps:

  1. With your open terminal cd to the repository's root directory.
  2. Enter tensorboard --logdir=tensorboard/tensorboard_train/ into the terminal.
  3. When a popup displaying the warning: "Do you want the application “python3.6” to accept incoming network connections?" shows up, click "accept".
  4. Open up a web browser and copy and paste the link in the terminal into your web browser.

Important Information

Please report any bugs and feel free to reach out if further clarification on instructions is necessary.