├── .github └── stale.yml ├── .gitignore ├── README.md ├── docs ├── Makefile ├── examples │ ├── README.rst │ ├── object_detection_camera.py │ ├── plot_object_detection_checkpoint.py │ ├── plot_object_detection_saved_model.py │ └── plot_object_detection_saved_model_tf1.py ├── make.bat └── source │ ├── _static │ ├── TensorBoard.JPG │ ├── css │ │ └── custom.css │ ├── labelImg.JPG │ ├── object_detection_tutorial_err.png │ └── object_detection_tutorial_output.png │ ├── auto_examples │ ├── images │ │ ├── sphx_glr_plot_object_detection_checkpoint_001.png │ │ ├── sphx_glr_plot_object_detection_checkpoint_002.png │ │ ├── sphx_glr_plot_object_detection_saved_model_001.png │ │ ├── sphx_glr_plot_object_detection_saved_model_002.png │ │ ├── sphx_glr_plot_object_detection_saved_model_tf1_001.png │ │ ├── sphx_glr_plot_object_detection_saved_model_tf1_002.png │ │ └── thumb │ │ │ ├── sphx_glr_object_detection_camera_thumb.png │ │ │ ├── sphx_glr_plot_object_detection_checkpoint_thumb.png │ │ │ ├── sphx_glr_plot_object_detection_saved_model_tf1_thumb.png │ │ │ └── sphx_glr_plot_object_detection_saved_model_thumb.png │ ├── object_detection_camera.ipynb │ ├── object_detection_camera.py │ ├── object_detection_camera.rst │ ├── plot_object_detection_checkpoint.ipynb │ ├── plot_object_detection_checkpoint.py.md5 │ ├── plot_object_detection_checkpoint.rst │ ├── plot_object_detection_saved_model.ipynb │ ├── plot_object_detection_saved_model.py.md5 │ ├── plot_object_detection_saved_model.rst │ ├── plot_object_detection_saved_model_tf1.ipynb │ ├── plot_object_detection_saved_model_tf1.py.md5 │ └── plot_object_detection_saved_model_tf1.rst │ ├── conf.py │ ├── index.rst │ ├── install.rst │ ├── issues.rst │ ├── scripts │ ├── generate_tfrecord.py │ ├── partition_dataset.py │ └── pipeline.config │ └── training.rst └── requirements.txt /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/examples/README.rst -------------------------------------------------------------------------------- /docs/examples/object_detection_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/examples/object_detection_camera.py -------------------------------------------------------------------------------- /docs/examples/plot_object_detection_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/examples/plot_object_detection_checkpoint.py -------------------------------------------------------------------------------- /docs/examples/plot_object_detection_saved_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/examples/plot_object_detection_saved_model.py -------------------------------------------------------------------------------- /docs/examples/plot_object_detection_saved_model_tf1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/examples/plot_object_detection_saved_model_tf1.py -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/TensorBoard.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/_static/TensorBoard.JPG -------------------------------------------------------------------------------- /docs/source/_static/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_static/labelImg.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/_static/labelImg.JPG -------------------------------------------------------------------------------- /docs/source/_static/object_detection_tutorial_err.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/_static/object_detection_tutorial_err.png -------------------------------------------------------------------------------- /docs/source/_static/object_detection_tutorial_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/_static/object_detection_tutorial_output.png -------------------------------------------------------------------------------- /docs/source/auto_examples/images/sphx_glr_plot_object_detection_checkpoint_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/images/sphx_glr_plot_object_detection_checkpoint_001.png -------------------------------------------------------------------------------- /docs/source/auto_examples/images/sphx_glr_plot_object_detection_checkpoint_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/images/sphx_glr_plot_object_detection_checkpoint_002.png -------------------------------------------------------------------------------- /docs/source/auto_examples/images/sphx_glr_plot_object_detection_saved_model_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/images/sphx_glr_plot_object_detection_saved_model_001.png -------------------------------------------------------------------------------- /docs/source/auto_examples/images/sphx_glr_plot_object_detection_saved_model_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/images/sphx_glr_plot_object_detection_saved_model_002.png -------------------------------------------------------------------------------- /docs/source/auto_examples/images/sphx_glr_plot_object_detection_saved_model_tf1_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/images/sphx_glr_plot_object_detection_saved_model_tf1_001.png -------------------------------------------------------------------------------- /docs/source/auto_examples/images/sphx_glr_plot_object_detection_saved_model_tf1_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/images/sphx_glr_plot_object_detection_saved_model_tf1_002.png -------------------------------------------------------------------------------- /docs/source/auto_examples/images/thumb/sphx_glr_object_detection_camera_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/images/thumb/sphx_glr_object_detection_camera_thumb.png -------------------------------------------------------------------------------- /docs/source/auto_examples/images/thumb/sphx_glr_plot_object_detection_checkpoint_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/images/thumb/sphx_glr_plot_object_detection_checkpoint_thumb.png -------------------------------------------------------------------------------- /docs/source/auto_examples/images/thumb/sphx_glr_plot_object_detection_saved_model_tf1_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/images/thumb/sphx_glr_plot_object_detection_saved_model_tf1_thumb.png -------------------------------------------------------------------------------- /docs/source/auto_examples/images/thumb/sphx_glr_plot_object_detection_saved_model_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/images/thumb/sphx_glr_plot_object_detection_saved_model_thumb.png -------------------------------------------------------------------------------- /docs/source/auto_examples/object_detection_camera.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/object_detection_camera.ipynb -------------------------------------------------------------------------------- /docs/source/auto_examples/object_detection_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/object_detection_camera.py -------------------------------------------------------------------------------- /docs/source/auto_examples/object_detection_camera.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/object_detection_camera.rst -------------------------------------------------------------------------------- /docs/source/auto_examples/plot_object_detection_checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/plot_object_detection_checkpoint.ipynb -------------------------------------------------------------------------------- /docs/source/auto_examples/plot_object_detection_checkpoint.py.md5: -------------------------------------------------------------------------------- 1 | 4fa911c47518a43cb2c1ac76cbb58d37 -------------------------------------------------------------------------------- /docs/source/auto_examples/plot_object_detection_checkpoint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/plot_object_detection_checkpoint.rst -------------------------------------------------------------------------------- /docs/source/auto_examples/plot_object_detection_saved_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/plot_object_detection_saved_model.ipynb -------------------------------------------------------------------------------- /docs/source/auto_examples/plot_object_detection_saved_model.py.md5: -------------------------------------------------------------------------------- 1 | 55ed283987df75b48eaa5899b94fddb6 -------------------------------------------------------------------------------- /docs/source/auto_examples/plot_object_detection_saved_model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/plot_object_detection_saved_model.rst -------------------------------------------------------------------------------- /docs/source/auto_examples/plot_object_detection_saved_model_tf1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/plot_object_detection_saved_model_tf1.ipynb -------------------------------------------------------------------------------- /docs/source/auto_examples/plot_object_detection_saved_model_tf1.py.md5: -------------------------------------------------------------------------------- 1 | 5bc3e063e2cdf821df654da64d7758a7 -------------------------------------------------------------------------------- /docs/source/auto_examples/plot_object_detection_saved_model_tf1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/auto_examples/plot_object_detection_saved_model_tf1.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/issues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/issues.rst -------------------------------------------------------------------------------- /docs/source/scripts/generate_tfrecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/scripts/generate_tfrecord.py -------------------------------------------------------------------------------- /docs/source/scripts/partition_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/scripts/partition_dataset.py -------------------------------------------------------------------------------- /docs/source/scripts/pipeline.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/scripts/pipeline.config -------------------------------------------------------------------------------- /docs/source/training.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/docs/source/training.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sglvladi/TensorFlowObjectDetectionTutorial/HEAD/requirements.txt --------------------------------------------------------------------------------