From 7bc46e9567dd10f3c81a1854dc880c73b9f4a209 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Wed, 6 Apr 2016 15:08:46 -0800 Subject: Update generated Python Op docs. Change: 119213211 --- tensorflow/g3doc/api_docs/python/sparse_ops.md | 30 ++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) 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: + + +* `feed_dict`: 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. +* `session`: (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} -- cgit v1.2.3