File tree Expand file tree Collapse file tree 2 files changed +8
-11
lines changed
tensorflow/g3doc/tutorials Expand file tree Collapse file tree 2 files changed +8
-11
lines changed Original file line number Diff line number Diff line change @@ -49,9 +49,9 @@ Andrej Karpathy who attempted to measure his own performance. He reached
4949[ blog post ] : http://karpathy.github.io/2014/09/02/what-i-learned-from-competing-against-a-convnet-on-imagenet/
5050
5151This tutorial will teach you how to use [ Inception-v3] . You'll learn how to
52- classify images into [ 1000 classes] in Python or C++. You 'll learn how
53- to run the model on mobile devices. You'll also learn how to extract higher
54- level features from this model which may be reused for other vision tasks.
52+ classify images into [ 1000 classes] in Python or C++. We 'll also discuss how to
53+ extract higher level features from this model which may be reused for other
54+ vision tasks.
5555
5656We're excited to see what the community will do with this model.
5757
@@ -90,11 +90,10 @@ will need to point `--model_dir` to the directory used.
9090
9191## Usage with the C++ API
9292
93- You can run the same [ Inception-v3] model in
94- C++, though it's packaged in a slightly more compact file, because we don't need
95- to keep some data that's only used for training. You can download the archive
96- containing the GraphDef that defines the model like this (running from the root
97- directory of the TensorFlow repository):
93+ You can run the same [ Inception-v3] model in C++ for use in production
94+ environments. You can download the archive containing the GraphDef that defines
95+ the model like this (running from the root directory of the TensorFlow
96+ repository):
9897
9998``` bash
10099wget https://storage.googleapis.com/download.tensorflow.org/models/inception_dec_2015.zip -O tensorflow/examples/label_image/data/inception_dec_2015.zip
Original file line number Diff line number Diff line change @@ -97,9 +97,7 @@ trained on ImageNet Challenge data and label set.
9797
9898[ View Tutorial] ( ../tutorials/image_recognition/index.md )
9999
100- We will be releasing code for training a state-of-the-art Inception model.
101-
102- COMING SOON
100+ We will soon be releasing code for training a state-of-the-art Inception model.
103101
104102
105103## Deep Dream Visual Hallucinations
You can’t perform that action at this time.
0 commit comments