tf.SparseTensorValue.__new__(_cls, indices, values, shape) Create new instance of SparseTensorValue(indices, values, shape)
tf.sparse_reshape(sp_input, shape, name=None) Reshapes a SparseTensor to represent values in a new dense shape.
tf.SparseTensorValue.__getstate__() Exclude the OrderedDict from pickling
tf.sparse_minimum(sp_a, sp_b, name=None) Returns the element-wise min of two SparseTensors. Assumes
tf.sparse_reduce_sum(sp_input, reduction_axes=None, keep_dims=False) Computes the sum of elements across dimensions of a SparseTensor
class tf.SparseTensorValue SparseTensorValue(indices, values, shape)
tf.SparseTensorValue.indices Alias for field number 0
tf.SparseTensorValue.__repr__() Return a nicely formatted representation string
tf.sparse_tensor_to_dense(sp_input, default_value=0, validate_indices=True, name=None) Converts a SparseTensor into
tf.sparse_softmax(sp_input, name=None) Applies softmax to a batched N-D SparseTensor. The
Page 4 of 5