Giter VIP home page Giter VIP logo

tf-object-detection's Introduction

tf-object-detection

Play with TensorFlow Object Detection

Preparation

Setup workspace

# create workspace folder
mkdir workspace
cd workspace

# create virtual environment
python3 -m venv cv-venv
source cv-venv/bin/activate
# install tensorflow or tensorflow-gpu
pip install tensorflow-gpu

# get source code
git clone https://github.com/ndaidong/tf-object-detection.git

cd tf-object-detection
pip install -r requirements.txt
./init.py

cd tflib
protoc object_detection/protos/*.proto --python_out=.
export PYTHONPATH=$PYTHONPATH:`pwd`:`pwd`/slim
cd ..
python tflib/object_detection/builders/model_builder_test.py

For more info:

Download dataset

For face detection
# cd workspace
wget http://www.robots.ox.ac.uk/~vgg/data/vgg_face/vgg_face_dataset.tar.gz
git clone https://github.com/ndaidong/vgg-faces-utils.git
tar -zxvf vgg_face_dataset.tar.gz -C vgg-faces-utils
pip install -r vgg-faces-utils/requirements.txt
cd vgg-faces-utils
./script.py -d vgg_face_dataset/files -o output

Useful links:

For gender detection

// coming soon

For age detection

// coming soon

Generate TFRecord files

# cd workspace/tf-object-detection
./make_tfrecord.py -d ../vgg-faces-utils/output -e 100 -o temp/data -l PATH_TO_LABEL_MAP_FILE.pbtxt

Arguments:

  • -d, --dir: relative path to folder where we store labels and images
  • -e, --extract: how many images we want to extract from the whole set. Default: 100.
  • -o, --output: relative path to folder where TFRecord files will be saved into. Default: temp/data
  • -l, --labelmap: relative path to label map file. Default configs/label_map.pbtxt
  • -r, --ratio: ratio of test set / training set. Default: 0.1 (1 image for test, 9 images for training)

Useful links:

Get checkpoints

# cd workspace
wget http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v2_coco_2018_03_29.tar.gz
tar -zxvf ssd_mobilenet_v2_coco_2018_03_29.tar.gz -C tf-object-detection/temp/checkpoints

To find more pretrained models:

Pipeline config

Depending on the selected checkpoint, we use the diffrent pipeline config.

A long list of sample configs are collected here:

Just download the appropriate config, then specify the following properties:

train_config -> fine_tune_checkpoint

Path to pretrained model, e.g temp/checkpoints/ssd_mobilenet_v2_coco_2018_03_29/model.cpkt

train_input_reader --> tf_record_input_reader --> input_path

Path to train.record, e.g temp/data/train.record

train_input_reader --> label_map_path

Path to label map, e.g configs/face-detection/label_map.pbtxt

eval_input_reader --> tf_record_input_reader --> input_path

Path to eval.record, e.g temp/data/eval.record

eval_input_reader --> label_map_path

Path to label map, e.g configs/face-detection/label_map.pbtxt

More about pipeline here:

Training

# cd workspace/tf-object-detection
python tflib/object_detection/train.py --logtostderr --pipeline_config_path=configs/PATH_TO_PIPELINE.config --train_dir=PATH_TO_TRAIN_DIR

PATH_TO_TRAIN_DIR is where we would to save trained model into. It will be created automatically if not yet.

Recommended path: temp/models/MODEL_NAME/MODEL_VERSION/train

Evaluation

# cd workspace/tf-object-detection
python tflib/object_detection/eval.py --logtostderr --pipeline_config_path=PATH_TO_PIPELINE.config --checkpoint_dir=PATH_TO_TRAINING_DIR --eval_dir=PATH_TO_EVALUATION_DIR

PATH_TO_TRAIN_DIR: training model directory that we've specified above.

PATH_TO_EVALUATION_DIR: path to where to store evaluating result. It will be created automatically if not yet.

Recommended path: temp/models/MODEL_NAME/MODEL_VERSION/eval

PATH_TO_PIPELINE_CONFIG

TensorBoard

# cd workspace/tf-object-detection
tensorboard --logdir=training:PATH_TO_TRAIN_DIR,test:PATH_TO_EVALUATION_DIR

Useful links:

Export graph

# cd workspace/tf-object-detection
python tflib/object_detection/export_inference_graph.py --input_type image_tensor --pipeline_config_path=PATH_TO_PIPELINE.config --trained_checkpoint_prefix=PATH_TO_TRAINING_DIR/model.ckpt-INDEX --output_directory=PATH_TO_OUTPUT_DIR

Useful links:

Prediction

# cd workspace/tf-object-detection
./predict.py -m PATH_TO_FROZEN_INFERENCE_GRAPH.pb -l PATH_TO_LABEL_MAP_FILE.pbtxt

Arguments:

  • -m, --model: relative path to exported .pb graph file
  • -l, --labelmap: relative path to label map file. Default configs/label_map.pbtxt
  • -f, --file: path to image or video file. Only support .jpg, .png, .mp4, .avi, .mkv
  • -c, --cam: index of camera. Use this argument for realtime prediction with specified camera.
  • -d, --dir: path to image foldes. Use this argument for predict multi images. Default samples
  • -o, --output: relative path to output folder. Go with --dir. Default temp/result

Tested with

  • TensorFlow v1.6, v1.7
  • Python v3.6.4, v3.6.5
  • Ubuntu 17.10

License

The MIT License (MIT)

tf-object-detection's People

Contributors

ndaidong avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.