aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/api_docs/python/client.md
diff options
context:
space:
mode:
authorGravatar Manjunath Kudlur <keveman@gmail.com>2015-11-08 22:08:04 -0800
committerGravatar Manjunath Kudlur <keveman@gmail.com>2015-11-08 22:08:04 -0800
commitf7f007284434377d7bb7cff48b5df5737651d3dc (patch)
tree81e46a460558a528fbd28936e13de505f05bccb8 /tensorflow/g3doc/api_docs/python/client.md
parent3b8b69f71a77d22cbfa0f94be5d4d0fd40ef596a (diff)
TensorFlow: Upstream changes to git.
Changes: - Lot of updates to docs. Base CL: 107357203
Diffstat (limited to 'tensorflow/g3doc/api_docs/python/client.md')
-rw-r--r--tensorflow/g3doc/api_docs/python/client.md30
1 files changed, 15 insertions, 15 deletions
diff --git a/tensorflow/g3doc/api_docs/python/client.md b/tensorflow/g3doc/api_docs/python/client.md
index 7f7f87913a..6be112738d 100644
--- a/tensorflow/g3doc/api_docs/python/client.md
+++ b/tensorflow/g3doc/api_docs/python/client.md
@@ -110,11 +110,11 @@ the session constructor.
##### Args: <a class="md-anchor" id="AUTOGENERATED-args-"></a>
-* <b>target</b>: (Optional.) The execution engine to connect to.
+* <b>`target`</b>: (Optional.) The execution engine to connect to.
Defaults to using an in-process engine. At present, no value
other than the empty string is supported.
-* <b>graph</b>: (Optional.) The `Graph` to be launched (described above).
-* <b>config</b>: (Optional.) A [`ConfigProto`](https://tensorflow.googlesource.com/tensorflow/+/master/tensorflow/core/framework/config.proto)
+* <b>`graph`</b>: (Optional.) The `Graph` to be launched (described above).
+* <b>`config`</b>: (Optional.) A [`ConfigProto`](https://tensorflow.googlesource.com/tensorflow/+/master/tensorflow/core/framework/config.proto)
protocol buffer with configuration options for the session.
@@ -163,9 +163,9 @@ one of the following types:
##### Args: <a class="md-anchor" id="AUTOGENERATED-args-"></a>
-* <b>fetches</b>: A single graph element, or a list of graph elements
+* <b>`fetches`</b>: A single graph element, or a list of graph elements
(described above).
-* <b>feed_dict</b>: A dictionary that maps graph elements to values
+* <b>`feed_dict`</b>: A dictionary that maps graph elements to values
(described above).
##### Returns: <a class="md-anchor" id="AUTOGENERATED-returns-"></a>
@@ -176,10 +176,10 @@ one of the following types:
##### Raises: <a class="md-anchor" id="AUTOGENERATED-raises-"></a>
-* <b>RuntimeError</b>: If this `Session` is in an invalid state (e.g. has been
+* <b>`RuntimeError`</b>: If this `Session` is in an invalid state (e.g. has been
closed).
-* <b>TypeError</b>: If `fetches` or `feed_dict` keys are of an inappropriate type.
-* <b>ValueError</b>: If `fetches` or `feed_dict` keys are invalid or refer to a
+* <b>`TypeError`</b>: If `fetches` or `feed_dict` keys are of an inappropriate type.
+* <b>`ValueError`</b>: If `fetches` or `feed_dict` keys are invalid or refer to a
`Tensor` that doesn't exist.
@@ -194,7 +194,7 @@ Calling this method frees all resources associated with the session.
##### Raises: <a class="md-anchor" id="AUTOGENERATED-raises-"></a>
-* <b>RuntimeError</b>: If an error occurs while closing the session.
+* <b>`RuntimeError`</b>: If an error occurs while closing the session.
@@ -318,10 +318,10 @@ the session constructor.
##### Args: <a class="md-anchor" id="AUTOGENERATED-args-"></a>
-* <b>target</b>: (Optional.) The execution engine to connect to.
+* <b>`target`</b>: (Optional.) The execution engine to connect to.
Defaults to using an in-process engine. At present, no value
other than the empty string is supported.
-* <b>graph</b>: (Optional.) The `Graph` to be launched (described above).
+* <b>`graph`</b>: (Optional.) The `Graph` to be launched (described above).
- - -
@@ -398,10 +398,10 @@ Creates a new OpError indicating that a particular op failed.
##### Args: <a class="md-anchor" id="AUTOGENERATED-args-"></a>
-* <b>node_def</b>: The graph_pb2.NodeDef proto representing the op that failed.
-* <b>op</b>: The ops.Operation that failed, if known; otherwise None.
-* <b>message</b>: The message string describing the failure.
-* <b>error_code</b>: The error_codes_pb2.Code describing the error.
+* <b>`node_def`</b>: The graph_pb2.NodeDef proto representing the op that failed.
+* <b>`op`</b>: The ops.Operation that failed, if known; otherwise None.
+* <b>`message`</b>: The message string describing the failure.
+* <b>`error_code`</b>: The error_codes_pb2.Code describing the error.
- - -