aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-04-06 15:08:46 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-04-06 16:11:55 -0700
commit7bc46e9567dd10f3c81a1854dc880c73b9f4a209 (patch)
treee53bc1e33c931b53b633f677f41f3b53e243c061
parent838c47b173c733f770e2ac799f1bc1faa0a3128e (diff)
Update generated Python Op docs.
Change: 119213211
-rw-r--r--tensorflow/g3doc/api_docs/python/sparse_ops.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/tensorflow/g3doc/api_docs/python/sparse_ops.md b/tensorflow/g3doc/api_docs/python/sparse_ops.md
index ff97938f95..4d3c98c417 100644
--- a/tensorflow/g3doc/api_docs/python/sparse_ops.md
+++ b/tensorflow/g3doc/api_docs/python/sparse_ops.md
@@ -125,6 +125,36 @@ The `Graph` that contains the index, value, and shape tensors.
+#### Other Methods
+- - -
+
+#### `tf.SparseTensor.eval(feed_dict=None, session=None)` {#SparseTensor.eval}
+
+Evaluates this sparse tensor in a `Session`.
+
+Calling this method will execute all preceding operations that
+produce the inputs needed for the operation that produces this
+tensor.
+
+*N.B.* Before invoking `SparseTensor.eval()`, its graph must have been
+launched in a session, and either a default session must be
+available, or `session` must be specified explicitly.
+
+##### Args:
+
+
+* <b>`feed_dict`</b>: A dictionary that maps `Tensor` objects to feed values.
+ See [`Session.run()`](../../api_docs/python/client.md#Session.run) for a
+ description of the valid feed values.
+* <b>`session`</b>: (Optional.) The `Session` to be used to evaluate this sparse
+ tensor. If none, the default session will be used.
+
+##### Returns:
+
+ A `SparseTensorValue` object.
+
+
+
- - -
### `class tf.SparseTensorValue` {#SparseTensorValue}