Home

Awesome

create_tfrecords

A simpler way of preparing large-scale image dataset by generalizing functions from TensorFlow-slim.

Requirements

  1. Python 2.7.x
  2. TensorFlow >= 0.12

NOTE: If you want to run this program on Python 3, clone and run git checkout python-3.0 for the Python 3 branch instead.

Usage

$python create_tfrecord.py --dataset_dir=/path/to/dataset/ --tfrecord_filename=dataset_name

#Example: python create_tfrecord.py --dataset_dir=/path/to/flowers --tfrecord_filename=flowers
#Note that the dataset_dir should be the folder that contains the root directory and not the root directory itself.

Arguments

Required arguments:

For example:

flowers\
    flower_photos\
        tulips\
            ....jpg
            ....jpg
            ....jpg
        sunflowers\
            ....jpg
        roses\
            ....jpg
        dandelion\
            ....jpg
        daisy\
            ....jpg

  Note: Your dataset_dir should be /path/to/flowers and not /path/to/flowers/flowers_photos

Optional Arguments

Complete Guide

For a complete guide, please visit here.