Fix broken link to Session C++ API

Change: 146877853
This commit is contained in:
A. Unique TensorFlower 2017-02-07 23:11:54 -08:00 committed by TensorFlower Gardener
parent 26e0ba035e
commit 81430dc9bd

View File

@ -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.