aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-02-07 23:11:54 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-02-07 23:29:51 -0800
commit81430dc9bdbcc89d909609f5a268ae3033d1722e (patch)
treeedd569a4e062666f5f36264c3b142355d6f3239f /tensorflow/g3doc
parent26e0ba035ef58f9cb58992dc05f62b8f50c54b36 (diff)
Fix broken link to Session C++ API
Change: 146877853
Diffstat (limited to 'tensorflow/g3doc')
-rw-r--r--tensorflow/g3doc/tutorials/image_recognition/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/g3doc/tutorials/image_recognition/index.md b/tensorflow/g3doc/tutorials/image_recognition/index.md
index d4fa5ba780..0915000953 100644
--- a/tensorflow/g3doc/tutorials/image_recognition/index.md
+++ b/tensorflow/g3doc/tutorials/image_recognition/index.md
@@ -254,7 +254,7 @@ definition with the `ToGraphDef()` function.
TF_RETURN_IF_ERROR(session->Run({}, {output_name}, {}, out_tensors));
return Status::OK();
```
-Then we create a [`Session`](http://www.tensorflow.org/versions/master/api_docs/cc/ClassSession.html#class-tensorflow-session)
+Then we create a [`Session`](../../api_docs/cc/class/tensorflow/session)
object, which is the interface to actually running the graph, and run it,
specifying which node we want to get the output from, and where to put the
output data.