Commit 87bf3b05 authored by derekjchow's avatar derekjchow Committed by GitHub
Browse files

Merge pull request #1827 from korrawat/install-instruction

Make object detection's installation instruction more obvious
parents 6e367f67 afae8661
...@@ -31,13 +31,15 @@ https://scholar.googleusercontent.com/scholar.bib?q=info:l291WsrB-hQJ:scholar.go ...@@ -31,13 +31,15 @@ https://scholar.googleusercontent.com/scholar.bib?q=info:l291WsrB-hQJ:scholar.go
## Table of contents ## Table of contents
Before You Start:
* <a href='g3doc/installation.md'>Installation</a><br>
Quick Start: Quick Start:
* <a href='object_detection_tutorial.ipynb'> * <a href='object_detection_tutorial.ipynb'>
Quick Start: Jupyter notebook for off-the-shelf inference</a><br> Quick Start: Jupyter notebook for off-the-shelf inference</a><br>
* <a href="g3doc/running_pets.md">Quick Start: Training a pet detector</a><br> * <a href="g3doc/running_pets.md">Quick Start: Training a pet detector</a><br>
Setup: Setup:
* <a href='g3doc/installation.md'>Installation</a><br>
* <a href='g3doc/configuring_jobs.md'> * <a href='g3doc/configuring_jobs.md'>
Configuring an object detection pipeline</a><br> Configuring an object detection pipeline</a><br>
* <a href='g3doc/preparing_inputs.md'>Preparing inputs</a><br> * <a href='g3doc/preparing_inputs.md'>Preparing inputs</a><br>
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
"metadata": {}, "metadata": {},
"source": [ "source": [
"# Object Detection Demo\n", "# Object Detection Demo\n",
"Welcome to the object detection inference walkthrough! This notebook will walk you step by step through the process of using a pre-trained model to detect objects in an image." "Welcome to the object detection inference walkthrough! This notebook will walk you step by step through the process of using a pre-trained model to detect objects in an image. Make sure to follow the [installation instructions](https://github.com/tensorflow/models/blob/master/object_detection/g3doc/installation.md) before you start."
] ]
}, },
{ {
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
"\n", "\n",
"Any model exported using the `export_inference_graph.py` tool can be loaded here simply by changing `PATH_TO_CKPT` to point to a new .pb file. \n", "Any model exported using the `export_inference_graph.py` tool can be loaded here simply by changing `PATH_TO_CKPT` to point to a new .pb file. \n",
"\n", "\n",
"By default we use an \"SSD with Mobilenet\" model here. See the [detection model zoo](g3doc/detection_model_zoo.md) for a list of other models that can be run out-of-the-box with varying speeds and accuracies." "By default we use an \"SSD with Mobilenet\" model here. See the [detection model zoo](https://github.com/tensorflow/models/blob/master/object_detection/g3doc/detection_model_zoo.md) for a list of other models that can be run out-of-the-box with varying speeds and accuracies."
] ]
}, },
{ {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment