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
49
49
[ blog post ] : http://karpathy.github.io/2014/09/02/what-i-learned-from-competing-against-a-convnet-on-imagenet/
50
50
51
51
This 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.
55
55
56
56
We're excited to see what the community will do with this model.
57
57
@@ -90,11 +90,10 @@ will need to point `--model_dir` to the directory used.
90
90
91
91
## Usage with the C++ API
92
92
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):
98
97
99
98
``` bash
100
99
wget 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.
97
97
98
98
[ View Tutorial] ( ../tutorials/image_recognition/index.md )
99
99
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.
103
101
104
102
105
103
## Deep Dream Visual Hallucinations
You can’t perform that action at this time.
0 commit comments