From 81430dc9bdbcc89d909609f5a268ae3033d1722e Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" <gardener@tensorflow.org> Date: Tue, 7 Feb 2017 23:11:54 -0800 Subject: [PATCH] Fix broken link to Session C++ API Change: 146877853 --- tensorflow/g3doc/tutorials/image_recognition/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/g3doc/tutorials/image_recognition/index.md b/tensorflow/g3doc/tutorials/image_recognition/index.md index d4fa5ba780d..09150009539 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.